PageRenderTime 140ms CodeModel.GetById 40ms RepoModel.GetById 1ms app.codeStats 0ms

/Common/Shared/FileDetails.vb

#
Visual Basic | 20 lines | 14 code | 5 blank | 1 comment | 0 complexity | 049a01e3caad559a89a16c65c2456cba MD5 | raw file
Possible License(s): GPL-2.0
  1. Imports ProtoXML
  2. Public Class FileInfo
  3. Inherits ProtoPropertyGroup
  4. Public Property StreamDetails As New StreamDetails(Me, "streamdetails")
  5. Public Sub New()
  6. MyBase.New(Nothing, Nothing)
  7. 'Throw New NotImplementedException()
  8. End Sub
  9. Public Sub New(ByRef Parent As IProtoXBase, ByVal NodeName As String)
  10. MyBase.New(Parent, NodeName)
  11. End Sub
  12. Public Overrides Function CreateNew() As ProtoXML.IProtoXChild
  13. Return New FileInfo
  14. End Function
  15. End Class