/Common/Shared/FileDetails.vb
# · Visual Basic · 20 lines · 14 code · 5 blank · 1 comment · 0 complexity · 049a01e3caad559a89a16c65c2456cba MD5 · raw file
- Imports ProtoXML
-
-
- Public Class FileInfo
- Inherits ProtoPropertyGroup
-
- Public Property StreamDetails As New StreamDetails(Me, "streamdetails")
- Public Sub New()
- MyBase.New(Nothing, Nothing)
- 'Throw New NotImplementedException()
- End Sub
-
- Public Sub New(ByRef Parent As IProtoXBase, ByVal NodeName As String)
- MyBase.New(Parent, NodeName)
- End Sub
-
- Public Overrides Function CreateNew() As ProtoXML.IProtoXChild
- Return New FileInfo
- End Function
- End Class