142 lines
6.1 KiB
VB.net
142 lines
6.1 KiB
VB.net
'------------------------------------------------------------------------------
|
|
' <auto-generated>
|
|
' This code was generated by a tool.
|
|
' Runtime Version:4.0.30319.34014
|
|
'
|
|
' Changes to this file may cause incorrect behavior and will be lost if
|
|
' the code is regenerated.
|
|
' </auto-generated>
|
|
'------------------------------------------------------------------------------
|
|
|
|
Option Strict On
|
|
Option Explicit On
|
|
|
|
Imports System
|
|
Imports System.Runtime.Serialization
|
|
|
|
Namespace ServiceMT
|
|
|
|
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
|
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
|
System.Runtime.Serialization.DataContractAttribute(Name:="MindsResponseDTO", [Namespace]:="http://schemas.datacontract.org/2004/07/WcfMTmessageIntegratorLib.DataObjects"), _
|
|
System.SerializableAttribute()> _
|
|
Partial Public Class MindsResponseDTO
|
|
Inherits Object
|
|
Implements System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
|
|
|
|
<System.NonSerializedAttribute()> _
|
|
Private extensionDataField As System.Runtime.Serialization.ExtensionDataObject
|
|
|
|
<System.Runtime.Serialization.OptionalFieldAttribute()> _
|
|
Private CommentsField As String
|
|
|
|
<System.Runtime.Serialization.OptionalFieldAttribute()> _
|
|
Private MtMessageIdField As String
|
|
|
|
<System.Runtime.Serialization.OptionalFieldAttribute()> _
|
|
Private ResponseField As String
|
|
|
|
<Global.System.ComponentModel.BrowsableAttribute(false)> _
|
|
Public Property ExtensionData() As System.Runtime.Serialization.ExtensionDataObject Implements System.Runtime.Serialization.IExtensibleDataObject.ExtensionData
|
|
Get
|
|
Return Me.extensionDataField
|
|
End Get
|
|
Set
|
|
Me.extensionDataField = value
|
|
End Set
|
|
End Property
|
|
|
|
<System.Runtime.Serialization.DataMemberAttribute()> _
|
|
Public Property Comments() As String
|
|
Get
|
|
Return Me.CommentsField
|
|
End Get
|
|
Set
|
|
If (Object.ReferenceEquals(Me.CommentsField, value) <> true) Then
|
|
Me.CommentsField = value
|
|
Me.RaisePropertyChanged("Comments")
|
|
End If
|
|
End Set
|
|
End Property
|
|
|
|
<System.Runtime.Serialization.DataMemberAttribute()> _
|
|
Public Property MtMessageId() As String
|
|
Get
|
|
Return Me.MtMessageIdField
|
|
End Get
|
|
Set
|
|
If (Object.ReferenceEquals(Me.MtMessageIdField, value) <> true) Then
|
|
Me.MtMessageIdField = value
|
|
Me.RaisePropertyChanged("MtMessageId")
|
|
End If
|
|
End Set
|
|
End Property
|
|
|
|
<System.Runtime.Serialization.DataMemberAttribute()> _
|
|
Public Property Response() As String
|
|
Get
|
|
Return Me.ResponseField
|
|
End Get
|
|
Set
|
|
If (Object.ReferenceEquals(Me.ResponseField, value) <> true) Then
|
|
Me.ResponseField = value
|
|
Me.RaisePropertyChanged("Response")
|
|
End If
|
|
End Set
|
|
End Property
|
|
|
|
Public Event PropertyChanged As System.ComponentModel.PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged
|
|
|
|
Protected Sub RaisePropertyChanged(ByVal propertyName As String)
|
|
Dim propertyChanged As System.ComponentModel.PropertyChangedEventHandler = Me.PropertyChangedEvent
|
|
If (Not (propertyChanged) Is Nothing) Then
|
|
propertyChanged(Me, New System.ComponentModel.PropertyChangedEventArgs(propertyName))
|
|
End If
|
|
End Sub
|
|
End Class
|
|
|
|
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0"), _
|
|
System.ServiceModel.ServiceContractAttribute(ConfigurationName:="ServiceMT.IServiceMTmessageIntegrator")> _
|
|
Public Interface IServiceMTmessageIntegrator
|
|
|
|
<System.ServiceModel.OperationContractAttribute(Action:="http://tempuri.org/IServiceMTmessageIntegrator/SetMindsResponse", ReplyAction:="http://tempuri.org/IServiceMTmessageIntegrator/SetMindsResponseResponse")> _
|
|
Function SetMindsResponse(ByVal mindsResponse As ServiceMT.MindsResponseDTO) As String
|
|
End Interface
|
|
|
|
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")> _
|
|
Public Interface IServiceMTmessageIntegratorChannel
|
|
Inherits ServiceMT.IServiceMTmessageIntegrator, System.ServiceModel.IClientChannel
|
|
End Interface
|
|
|
|
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
|
System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")> _
|
|
Partial Public Class ServiceMTmessageIntegratorClient
|
|
Inherits System.ServiceModel.ClientBase(Of ServiceMT.IServiceMTmessageIntegrator)
|
|
Implements ServiceMT.IServiceMTmessageIntegrator
|
|
|
|
Public Sub New()
|
|
MyBase.New
|
|
End Sub
|
|
|
|
Public Sub New(ByVal endpointConfigurationName As String)
|
|
MyBase.New(endpointConfigurationName)
|
|
End Sub
|
|
|
|
Public Sub New(ByVal endpointConfigurationName As String, ByVal remoteAddress As String)
|
|
MyBase.New(endpointConfigurationName, remoteAddress)
|
|
End Sub
|
|
|
|
Public Sub New(ByVal endpointConfigurationName As String, ByVal remoteAddress As System.ServiceModel.EndpointAddress)
|
|
MyBase.New(endpointConfigurationName, remoteAddress)
|
|
End Sub
|
|
|
|
Public Sub New(ByVal binding As System.ServiceModel.Channels.Binding, ByVal remoteAddress As System.ServiceModel.EndpointAddress)
|
|
MyBase.New(binding, remoteAddress)
|
|
End Sub
|
|
|
|
Public Function SetMindsResponse(ByVal mindsResponse As ServiceMT.MindsResponseDTO) As String Implements ServiceMT.IServiceMTmessageIntegrator.SetMindsResponse
|
|
Return MyBase.Channel.SetMindsResponse(mindsResponse)
|
|
End Function
|
|
End Class
|
|
End Namespace
|