EDMI.API: add parameter to load file contents for GetFileObject
This commit is contained in:
@@ -1307,6 +1307,8 @@ Namespace EDMIServiceReference
|
||||
|
||||
Private _FileContentsField() As Byte
|
||||
|
||||
Private _FileExtensionField As String
|
||||
|
||||
Private _FileHashField As String
|
||||
|
||||
Private _FileSizeField As Long
|
||||
@@ -1349,6 +1351,19 @@ Namespace EDMIServiceReference
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<System.Runtime.Serialization.DataMemberAttribute(IsRequired:=true)> _
|
||||
Public Property _FileExtension() As String
|
||||
Get
|
||||
Return Me._FileExtensionField
|
||||
End Get
|
||||
Set
|
||||
If (Object.ReferenceEquals(Me._FileExtensionField, value) <> true) Then
|
||||
Me._FileExtensionField = value
|
||||
Me.RaisePropertyChanged("_FileExtension")
|
||||
End If
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<System.Runtime.Serialization.DataMemberAttribute(IsRequired:=true)> _
|
||||
Public Property _FileHash() As String
|
||||
Get
|
||||
|
||||
Reference in New Issue
Block a user