EDMI.API: add parameter to load file contents for GetFileObject
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
<xs:sequence>
|
||||
<xs:element name="_AccessRights" nillable="true" type="xs:string" />
|
||||
<xs:element name="_FileContents" nillable="true" type="xs:base64Binary" />
|
||||
<xs:element name="_FileExtension" nillable="true" type="xs:string" />
|
||||
<xs:element name="_FileHash" nillable="true" type="xs:string" />
|
||||
<xs:element name="_FileSize" type="xs:long" />
|
||||
<xs:element name="_ObjectId" type="xs:long" />
|
||||
|
||||
@@ -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