Correct FieldNames of DocumentObject

This commit is contained in:
Jonathan Jenne
2019-03-05 12:31:08 +01:00
parent ec616ac9b8
commit dae890eebd
6 changed files with 46 additions and 44 deletions

View File

@@ -2,9 +2,9 @@
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/DigitalData.Modules.Filesystem" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/DigitalData.Modules.Filesystem" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="DocumentObject">
<xs:sequence>
<xs:element name="_ContainerId" nillable="true" type="xs:string" />
<xs:element name="_DocumentId" type="xs:long" />
<xs:element name="_FileName" nillable="true" type="xs:string" />
<xs:element name="ContainerId" nillable="true" type="xs:string" />
<xs:element name="DocumentId" type="xs:long" />
<xs:element name="FileName" nillable="true" type="xs:string" />
</xs:sequence>
</xs:complexType>
<xs:element name="DocumentObject" nillable="true" type="tns:DocumentObject" />

View File

@@ -234,11 +234,11 @@ Namespace EDMIServiceReference
<System.NonSerializedAttribute()> _
Private extensionDataField As System.Runtime.Serialization.ExtensionDataObject
Private _ContainerIdField As String
Private ContainerIdField As String
Private _DocumentIdField As Long
Private DocumentIdField As Long
Private _FileNameField As String
Private FileNameField As String
<Global.System.ComponentModel.BrowsableAttribute(false)> _
Public Property ExtensionData() As System.Runtime.Serialization.ExtensionDataObject Implements System.Runtime.Serialization.IExtensibleDataObject.ExtensionData
@@ -251,40 +251,40 @@ Namespace EDMIServiceReference
End Property
<System.Runtime.Serialization.DataMemberAttribute(IsRequired:=true)> _
Public Property _ContainerId() As String
Public Property ContainerId() As String
Get
Return Me._ContainerIdField
Return Me.ContainerIdField
End Get
Set
If (Object.ReferenceEquals(Me._ContainerIdField, value) <> true) Then
Me._ContainerIdField = value
Me.RaisePropertyChanged("_ContainerId")
If (Object.ReferenceEquals(Me.ContainerIdField, value) <> true) Then
Me.ContainerIdField = value
Me.RaisePropertyChanged("ContainerId")
End If
End Set
End Property
<System.Runtime.Serialization.DataMemberAttribute(IsRequired:=true)> _
Public Property _DocumentId() As Long
Public Property DocumentId() As Long
Get
Return Me._DocumentIdField
Return Me.DocumentIdField
End Get
Set
If (Me._DocumentIdField.Equals(value) <> true) Then
Me._DocumentIdField = value
Me.RaisePropertyChanged("_DocumentId")
If (Me.DocumentIdField.Equals(value) <> true) Then
Me.DocumentIdField = value
Me.RaisePropertyChanged("DocumentId")
End If
End Set
End Property
<System.Runtime.Serialization.DataMemberAttribute(IsRequired:=true)> _
Public Property _FileName() As String
Public Property FileName() As String
Get
Return Me._FileNameField
Return Me.FileNameField
End Get
Set
If (Object.ReferenceEquals(Me._FileNameField, value) <> true) Then
Me._FileNameField = value
Me.RaisePropertyChanged("_FileName")
If (Object.ReferenceEquals(Me.FileNameField, value) <> true) Then
Me.FileNameField = value
Me.RaisePropertyChanged("FileName")
End If
End Set
End Property