EDMI.API: add parameter to load file contents for GetFileObject

This commit is contained in:
Jonathan Jenne
2021-12-17 16:41:05 +01:00
parent 1b6a69b24f
commit 97fd37de0c
4 changed files with 35 additions and 9 deletions

View File

@@ -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" />

View File

@@ -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