'------------------------------------------------------------------------------ ' ' 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. ' '------------------------------------------------------------------------------ Option Strict On Option Explicit On Imports System Imports System.Runtime.Serialization Namespace ServiceMT _ Partial Public Class MindsResponseDTO Inherits Object Implements System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged _ Private extensionDataField As System.Runtime.Serialization.ExtensionDataObject _ Private CommentsField As String _ Private MtMessageIdField As String _ Private ResponseField As String _ 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 _ 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 _ 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 _ 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 _ Public Interface IServiceMTmessageIntegrator _ Function SetMindsResponse(ByVal mindsResponse As ServiceMT.MindsResponseDTO) As String End Interface _ Public Interface IServiceMTmessageIntegratorChannel Inherits ServiceMT.IServiceMTmessageIntegrator, System.ServiceModel.IClientChannel End Interface _ 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