From 8edb99de64149340de4a43dfd5a0cad6777884d6 Mon Sep 17 00:00:00 2001 From: Mustafa Uzun Date: Fri, 20 Oct 2023 11:59:08 +0300 Subject: [PATCH] fix: EchoMessageResquestWithMessageHeader typo --- .../Common/Scenarios/ServiceInterfaces.cs | 6 +- .../XmlSerializerFormatTest.4.1.0.cs | 2 +- .../App_code/IWcfService.cs | 6 +- .../App_code/WcfService.cs | 4 +- .../Saml2IssuedToken_mex/Reference.cs | 966 +++++++++--------- .../Reference.cs | 954 ++++++++--------- .../BasicHttp/Reference.cs | 954 ++++++++--------- .../BasicHttps/Reference.cs | 954 ++++++++--------- .../NetHttp/Reference.cs | 956 ++++++++--------- .../NetHttpWebSockets/Reference.cs | 960 ++++++++--------- .../NetHttps/Reference.cs | 956 ++++++++--------- .../NetHttpsWebSockets/Reference.cs | 960 ++++++++--------- .../TcpTransSecMessCredsUserName/Reference.cs | 960 ++++++++--------- .../Reference.cs | 954 ++++++++--------- 14 files changed, 4796 insertions(+), 4796 deletions(-) diff --git a/src/System.Private.ServiceModel/tests/Common/Scenarios/ServiceInterfaces.cs b/src/System.Private.ServiceModel/tests/Common/Scenarios/ServiceInterfaces.cs index 0ce1e7ffc4f..cb2995e5764 100644 --- a/src/System.Private.ServiceModel/tests/Common/Scenarios/ServiceInterfaces.cs +++ b/src/System.Private.ServiceModel/tests/Common/Scenarios/ServiceInterfaces.cs @@ -571,10 +571,10 @@ public interface IXmlMessageContarctTestService XmlMessageContractTestResponse EchoMessageResponseWithMessageHeader(XmlMessageContractTestRequest request); [OperationContract( - Action = "http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMessageHeader", + Action = "http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMessageHeader", ReplyAction = "*")] [XmlSerializerFormat(SupportFaults = true)] - XmlMessageContractTestResponse EchoMessageResquestWithMessageHeader(XmlMessageContractTestRequestWithMessageHeader request); + XmlMessageContractTestResponse EchoMessageRequestWithMessageHeader(XmlMessageContractTestRequestWithMessageHeader request); } [ServiceContract] @@ -812,7 +812,7 @@ public interface IHelloWorldDocLit [OperationContract] void AddString(Guid guid, string testString); - [OperationContract] + [OperationContract] string GetAndRemoveString(Guid guid); } diff --git a/src/System.Private.ServiceModel/tests/Scenarios/Contract/XmlSerializer/XmlSerializerFormatTest.4.1.0.cs b/src/System.Private.ServiceModel/tests/Scenarios/Contract/XmlSerializer/XmlSerializerFormatTest.4.1.0.cs index 07b3d7ee7cf..3b1db9c5e6d 100644 --- a/src/System.Private.ServiceModel/tests/Scenarios/Contract/XmlSerializer/XmlSerializerFormatTest.4.1.0.cs +++ b/src/System.Private.ServiceModel/tests/Scenarios/Contract/XmlSerializer/XmlSerializerFormatTest.4.1.0.cs @@ -51,7 +51,7 @@ public static void MessageHeader_RequestTypeWithUsesMessageHeaderAttribute() try { // *** EXECUTE *** \\ - XmlMessageContractTestResponse response = serviceProxy.EchoMessageResquestWithMessageHeader(input); + XmlMessageContractTestResponse response = serviceProxy.EchoMessageRequestWithMessageHeader(input); // *** VALIDATE *** \\ Assert.NotNull(response); diff --git a/src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/IWcfService.cs b/src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/IWcfService.cs index d8abb1bf1d6..d2dd7beface 100644 --- a/src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/IWcfService.cs +++ b/src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/IWcfService.cs @@ -150,10 +150,10 @@ public interface IWcfService XmlMessageContractTestResponse EchoMessageResponseWithMessageHeader(XmlMessageContractTestRequest request); [OperationContract( - Action = "http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMessageHeader", - ReplyAction = "http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMessageHeaderResponse")] + Action = "http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMessageHeader", + ReplyAction = "http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMessageHeaderResponse")] [XmlSerializerFormat(SupportFaults = true)] - XmlMessageContractTestResponse EchoMessageResquestWithMessageHeader(XmlMessageContractTestRequestWithMessageHeader request); + XmlMessageContractTestResponse EchoMessageRequestWithMessageHeader(XmlMessageContractTestRequestWithMessageHeader request); [OperationContract] bool IsHttpKeepAliveDisabled(); diff --git a/src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/WcfService.cs b/src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/WcfService.cs index 1cd313715bf..3562382ccbf 100644 --- a/src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/WcfService.cs +++ b/src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/WcfService.cs @@ -245,7 +245,7 @@ public string GetRestartServiceEndpoint() Guid guid = Guid.NewGuid(); string localHost = "http://localhost"; string path = "/WindowsCommunicationFoundationTest/" + WindowsIdentity.GetCurrent().Name.Split('\\').Last() + "/" + guid.ToString(); - + ServiceHost host = new ServiceHost(typeof(WcfRestartService)); host.AddServiceEndpoint(typeof(IWcfRestartService), binding, localHost + path); host.Open(); @@ -311,7 +311,7 @@ public XmlMessageContractTestResponse EchoMessageResponseWithMessageHeader(XmlMe return result; } - public XmlMessageContractTestResponse EchoMessageResquestWithMessageHeader(XmlMessageContractTestRequestWithMessageHeader request) + public XmlMessageContractTestResponse EchoMessageRequestWithMessageHeader(XmlMessageContractTestRequestWithMessageHeader request) { var result = new XmlMessageContractTestResponse(request.Message); return result; diff --git a/src/dotnet-svcutil/lib/tests/Baselines/FederationServiceTest/Saml2IssuedToken_mex/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/FederationServiceTest/Saml2IssuedToken_mex/Reference.cs index e2a0082cc28..7b8c267f323 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/FederationServiceTest/Saml2IssuedToken_mex/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/FederationServiceTest/Saml2IssuedToken_mex/Reference.cs @@ -9,17 +9,17 @@ namespace Saml2IssuedToken_mex_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="Saml2IssuedToken_mex_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(Saml2IssuedToken_mex_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(Saml2IssuedToken_mex_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(Saml2IssuedToken_mex_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(Saml2IssuedToken_mex_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(Saml2IssuedToken_mex_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(Saml2IssuedToken_mex_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(Saml2IssuedToken_mex_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(Saml2IssuedToken_mex_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(Saml2IssuedToken_mex_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(Saml2IssuedToken_mex_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(Saml2IssuedToken_mex_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(Saml2IssuedToken_mex_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(Saml2IssuedToken_mex_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(Saml2IssuedToken_mex_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(Saml2IssuedToken_mex_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(Saml2IssuedToken_mex_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(Saml2IssuedToken_mex_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(Saml2IssuedToken_mex_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(Saml2IssuedToken_mex_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(Saml2IssuedToken_mex_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(Saml2IssuedToken_mex_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(Saml2IssuedToken_mex_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(Saml2IssuedToken_mex_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(Saml2IssuedToken_mex_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(Saml2IssuedToken_mex_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(Saml2IssuedToken_mex_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(Saml2IssuedToken_mex_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(Saml2IssuedToken_mex_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(Saml2IssuedToken_mex_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(Saml2IssuedToken_mex_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(Saml2IssuedToken_mex_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(Saml2IssuedToken_mex_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public Saml2IssuedToken_mex_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(Saml2IssuedToken_mex_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public Saml2IssuedToken_mex_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(Saml2IssuedToken_mex_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public Saml2IssuedToken_mex_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(Saml2IssuedToken_mex_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public Saml2IssuedToken_mex_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(Saml2IssuedToken_mex_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public Saml2IssuedToken_mex_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(Saml2IssuedToken_mex_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public Saml2IssuedToken_mex_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(Saml2IssuedToken_mex_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public Saml2IssuedToken_mex_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(Saml2IssuedToken_mex_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,187 +2114,187 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public Saml2IssuedToken_mex_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(Saml2IssuedToken_mex_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : Saml2IssuedToken_mex_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, Saml2IssuedToken_mex_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoWithTimeoutAsync(Saml2IssuedToken_mex_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { Saml2IssuedToken_mex_NS.EchoWithTimeoutRequest inValue = new Saml2IssuedToken_mex_NS.EchoWithTimeoutRequest(); @@ -2302,62 +2302,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoAsync(Saml2IssuedToken_mex_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { Saml2IssuedToken_mex_NS.EchoRequest inValue = new Saml2IssuedToken_mex_NS.EchoRequest(); inValue.message = message; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoComplexAsync(Saml2IssuedToken_mex_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(Saml2IssuedToken_mex_NS.ComplexCompositeType message) { Saml2IssuedToken_mex_NS.EchoComplexRequest inValue = new Saml2IssuedToken_mex_NS.EchoComplexRequest(); inValue.message = message; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.TestFaultAsync(Saml2IssuedToken_mex_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { Saml2IssuedToken_mex_NS.TestFaultRequest inValue = new Saml2IssuedToken_mex_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.TestFaultsAsync(Saml2IssuedToken_mex_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { Saml2IssuedToken_mex_NS.TestFaultsRequest inValue = new Saml2IssuedToken_mex_NS.TestFaultsRequest(); @@ -2365,13 +2365,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.TestFaultWithKnownTypeAsync(Saml2IssuedToken_mex_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { Saml2IssuedToken_mex_NS.TestFaultWithKnownTypeRequest inValue = new Saml2IssuedToken_mex_NS.TestFaultWithKnownTypeRequest(); @@ -2379,127 +2379,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.ThrowInvalidOperationExceptionAsync(Saml2IssuedToken_mex_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { Saml2IssuedToken_mex_NS.ThrowInvalidOperationExceptionRequest inValue = new Saml2IssuedToken_mex_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.GetDataUsingDataContractAsync(Saml2IssuedToken_mex_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(Saml2IssuedToken_mex_NS.CompositeType composite) { Saml2IssuedToken_mex_NS.GetDataUsingDataContractRequest inValue = new Saml2IssuedToken_mex_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.ValidateMessagePropertyHeadersAsync(Saml2IssuedToken_mex_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { Saml2IssuedToken_mex_NS.ValidateMessagePropertyHeadersRequest inValue = new Saml2IssuedToken_mex_NS.ValidateMessagePropertyHeadersRequest(); return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.UserGetAuthTokenAsync(Saml2IssuedToken_mex_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { Saml2IssuedToken_mex_NS.UserGetAuthTokenRequest inValue = new Saml2IssuedToken_mex_NS.UserGetAuthTokenRequest(); return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(Saml2IssuedToken_mex_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(Saml2IssuedToken_mex_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(Saml2IssuedToken_mex_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(Saml2IssuedToken_mex_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(Saml2IssuedToken_mex_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { Saml2IssuedToken_mex_NS.EchoHttpRequestMessagePropertyRequest inValue = new Saml2IssuedToken_mex_NS.EchoHttpRequestMessagePropertyRequest(); return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.GetRestartServiceEndpointAsync(Saml2IssuedToken_mex_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { Saml2IssuedToken_mex_NS.GetRestartServiceEndpointRequest inValue = new Saml2IssuedToken_mex_NS.GetRestartServiceEndpointRequest(); return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(Saml2IssuedToken_mex_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.LoginAsync(Saml2IssuedToken_mex_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { Saml2IssuedToken_mex_NS.LoginRequest inValue = new Saml2IssuedToken_mex_NS.LoginRequest(); @@ -2508,145 +2508,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.GetStreamFromStringAsync(Saml2IssuedToken_mex_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { Saml2IssuedToken_mex_NS.GetStreamFromStringRequest inValue = new Saml2IssuedToken_mex_NS.GetStreamFromStringRequest(); inValue.data = data; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.GetStringFromStreamAsync(Saml2IssuedToken_mex_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { Saml2IssuedToken_mex_NS.GetStringFromStreamRequest inValue = new Saml2IssuedToken_mex_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoMessageParameterAsync(Saml2IssuedToken_mex_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { Saml2IssuedToken_mex_NS.EchoMessageParameterRequest inValue = new Saml2IssuedToken_mex_NS.EchoMessageParameterRequest(); inValue.name = name; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoItemsAsync(Saml2IssuedToken_mex_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { Saml2IssuedToken_mex_NS.EchoItemsRequest inValue = new Saml2IssuedToken_mex_NS.EchoItemsRequest(); inValue.objects = objects; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(Saml2IssuedToken_mex_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.ReturnContentTypeAsync(Saml2IssuedToken_mex_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { Saml2IssuedToken_mex_NS.ReturnContentTypeRequest inValue = new Saml2IssuedToken_mex_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(Saml2IssuedToken_mex_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { Saml2IssuedToken_mex_NS.XmlMessageContractTestRequest inValue = new Saml2IssuedToken_mex_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(Saml2IssuedToken_mex_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(Saml2IssuedToken_mex_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { Saml2IssuedToken_mex_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new Saml2IssuedToken_mex_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task Saml2IssuedToken_mex_NS.IWcfService.GetRequestHttpHeadersAsync(Saml2IssuedToken_mex_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { Saml2IssuedToken_mex_NS.GetRequestHttpHeadersRequest inValue = new Saml2IssuedToken_mex_NS.GetRequestHttpHeadersRequest(); return ((Saml2IssuedToken_mex_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.issued_token_using_tls_x002F_wsHttp_x002F_wstrust13_x002F_Text_IWcfService)) @@ -2755,7 +2755,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.issued_token_using_tls_x002F_wsHttp_x002F_wstrust13_x002F_Text_IWcfService)) @@ -2800,25 +2800,25 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + public enum EndpointConfiguration { - + issued_token_using_tls_x002F_wsHttp_x002F_wstrust13_x002F_Text_IWcfService, - + issued_token_using_tls_x002F_wsHttp_x002F_wstrust13_x002F_sc_x002F_Text_IWcfService, - + issued_token_using_tls_x002F_wsHttp_x002F_wstrust13_x002F_Mtom_IWcfService, - + issued_token_using_tls_x002F_wsHttp_x002F_wstrust13_x002F_sc_x002F_Mtom_IWcfService, - + issued_token_using_tls_x002F_wsHttp_x002F_wstrustFeb2005_x002F_Text_IWcfService, - + issued_token_using_tls_x002F_wsHttp_x002F_wstrustFeb2005_x002F_sc_x002F_Text_IWcfService, - + issued_token_using_tls_x002F_wsHttp_x002F_wstrustFeb2005_x002F_Mtom_IWcfService, - + issued_token_using_tls_x002F_wsHttp_x002F_wstrustFeb2005_x002F_sc_x002F_Mtom_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicHttpsTransSecMessCredsUserName/BasicHttpsTransSecMessCredsUserName/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicHttpsTransSecMessCredsUserName/BasicHttpsTransSecMessCredsUserName/Reference.cs index 6927c4cb349..2afe4c2b335 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicHttpsTransSecMessCredsUserName/BasicHttpsTransSecMessCredsUserName/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicHttpsTransSecMessCredsUserName/BasicHttpsTransSecMessCredsUserName/Reference.cs @@ -9,17 +9,17 @@ namespace BasicHttpsTransSecMessCredsUserName_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="BasicHttpsTransSecMessCredsUserName_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttpsTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(BasicHttpsTransSecMessCredsUserName_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttpsTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttpsTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(BasicHttpsTransSecMessCredsUserName_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttpsTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(BasicHttpsTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(BasicHttpsTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(BasicHttpsTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(BasicHttpsTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(BasicHttpsTransSecMessCredsUserName_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(BasicHttpsTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(BasicHttpsTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(BasicHttpsTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(BasicHttpsTransSecMessCredsUserName_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(BasicHttpsTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(BasicHttpsTransSecMessCredsUserName_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(BasicHttpsTransSecMessCredsUserName_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(BasicHttpsTransSecMessCredsUserName_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(BasicHttpsTransSecMessCredsUserName_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(BasicHttpsTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttpsTransSecMessCredsUserName_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(BasicHttpsTransSecMessCredsUserName_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttpsTransSecMessCredsUserName_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(BasicHttpsTransSecMessCredsUserName_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttpsTransSecMessCredsUserName_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(BasicHttpsTransSecMessCredsUserName_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttpsTransSecMessCredsUserName_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(BasicHttpsTransSecMessCredsUserName_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public BasicHttpsTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(BasicHttpsTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttpsTransSecMessCredsUserName_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(BasicHttpsTransSecMessCredsUserName_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttpsTransSecMessCredsUserName_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(BasicHttpsTransSecMessCredsUserName_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,187 +2114,187 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public BasicHttpsTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(BasicHttpsTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : BasicHttpsTransSecMessCredsUserName_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, BasicHttpsTransSecMessCredsUserName_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoWithTimeoutAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { BasicHttpsTransSecMessCredsUserName_NS.EchoWithTimeoutRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.EchoWithTimeoutRequest(); @@ -2302,62 +2302,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { BasicHttpsTransSecMessCredsUserName_NS.EchoRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.EchoRequest(); inValue.message = message; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoComplexAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(BasicHttpsTransSecMessCredsUserName_NS.ComplexCompositeType message) { BasicHttpsTransSecMessCredsUserName_NS.EchoComplexRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.EchoComplexRequest(); inValue.message = message; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.TestFaultAsync(BasicHttpsTransSecMessCredsUserName_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { BasicHttpsTransSecMessCredsUserName_NS.TestFaultRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.TestFaultsAsync(BasicHttpsTransSecMessCredsUserName_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { BasicHttpsTransSecMessCredsUserName_NS.TestFaultsRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.TestFaultsRequest(); @@ -2365,13 +2365,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.TestFaultWithKnownTypeAsync(BasicHttpsTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { BasicHttpsTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest(); @@ -2379,127 +2379,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.ThrowInvalidOperationExceptionAsync(BasicHttpsTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { BasicHttpsTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.GetDataUsingDataContractAsync(BasicHttpsTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(BasicHttpsTransSecMessCredsUserName_NS.CompositeType composite) { BasicHttpsTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.ValidateMessagePropertyHeadersAsync(BasicHttpsTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { BasicHttpsTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest(); return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.UserGetAuthTokenAsync(BasicHttpsTransSecMessCredsUserName_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { BasicHttpsTransSecMessCredsUserName_NS.UserGetAuthTokenRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.UserGetAuthTokenRequest(); return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(BasicHttpsTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(BasicHttpsTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(BasicHttpsTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(BasicHttpsTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { BasicHttpsTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest(); return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.GetRestartServiceEndpointAsync(BasicHttpsTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { BasicHttpsTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest(); return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.LoginAsync(BasicHttpsTransSecMessCredsUserName_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { BasicHttpsTransSecMessCredsUserName_NS.LoginRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.LoginRequest(); @@ -2508,145 +2508,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.GetStreamFromStringAsync(BasicHttpsTransSecMessCredsUserName_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { BasicHttpsTransSecMessCredsUserName_NS.GetStreamFromStringRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.GetStreamFromStringRequest(); inValue.data = data; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.GetStringFromStreamAsync(BasicHttpsTransSecMessCredsUserName_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { BasicHttpsTransSecMessCredsUserName_NS.GetStringFromStreamRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoMessageParameterAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { BasicHttpsTransSecMessCredsUserName_NS.EchoMessageParameterRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.EchoMessageParameterRequest(); inValue.name = name; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoItemsAsync(BasicHttpsTransSecMessCredsUserName_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { BasicHttpsTransSecMessCredsUserName_NS.EchoItemsRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.EchoItemsRequest(); inValue.objects = objects; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.ReturnContentTypeAsync(BasicHttpsTransSecMessCredsUserName_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { BasicHttpsTransSecMessCredsUserName_NS.ReturnContentTypeRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new BasicHttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttpsTransSecMessCredsUserName_NS.IWcfService.GetRequestHttpHeadersAsync(BasicHttpsTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { BasicHttpsTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest inValue = new BasicHttpsTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest(); return ((BasicHttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.https_message_credentials_username_x002F_Buffered_IWcfService)) @@ -2671,7 +2671,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.https_message_credentials_username_x002F_Buffered_IWcfService)) @@ -2686,13 +2686,13 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + public enum EndpointConfiguration { - + https_message_credentials_username_x002F_Buffered_IWcfService, - + https_message_credentials_username_x002F_Streamed_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicSvcs/BasicHttp/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicSvcs/BasicHttp/Reference.cs index 3253f7f1a84..225b7783dac 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicSvcs/BasicHttp/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicSvcs/BasicHttp/Reference.cs @@ -9,17 +9,17 @@ namespace BasicHttp_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="BasicHttp_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(BasicHttp_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(BasicHttp_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(BasicHttp_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttp_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(BasicHttp_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttp_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttp_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(BasicHttp_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttp_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(BasicHttp_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(BasicHttp_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(BasicHttp_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(BasicHttp_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(BasicHttp_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(BasicHttp_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(BasicHttp_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(BasicHttp_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(BasicHttp_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(BasicHttp_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(BasicHttp_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(BasicHttp_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(BasicHttp_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(BasicHttp_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(BasicHttp_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(BasicHttp_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(BasicHttp_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(BasicHttp_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(BasicHttp_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(BasicHttp_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(BasicHttp_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(BasicHttp_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(BasicHttp_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttp_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(BasicHttp_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttp_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(BasicHttp_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttp_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(BasicHttp_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttp_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(BasicHttp_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public BasicHttp_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(BasicHttp_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttp_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(BasicHttp_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttp_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(BasicHttp_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,187 +2114,187 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public BasicHttp_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(BasicHttp_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : BasicHttp_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, BasicHttp_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoWithTimeoutAsync(BasicHttp_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { BasicHttp_NS.EchoWithTimeoutRequest inValue = new BasicHttp_NS.EchoWithTimeoutRequest(); @@ -2302,62 +2302,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((BasicHttp_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoAsync(BasicHttp_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { BasicHttp_NS.EchoRequest inValue = new BasicHttp_NS.EchoRequest(); inValue.message = message; return ((BasicHttp_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoComplexAsync(BasicHttp_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(BasicHttp_NS.ComplexCompositeType message) { BasicHttp_NS.EchoComplexRequest inValue = new BasicHttp_NS.EchoComplexRequest(); inValue.message = message; return ((BasicHttp_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.TestFaultAsync(BasicHttp_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { BasicHttp_NS.TestFaultRequest inValue = new BasicHttp_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((BasicHttp_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.TestFaultsAsync(BasicHttp_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { BasicHttp_NS.TestFaultsRequest inValue = new BasicHttp_NS.TestFaultsRequest(); @@ -2365,13 +2365,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((BasicHttp_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.TestFaultWithKnownTypeAsync(BasicHttp_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { BasicHttp_NS.TestFaultWithKnownTypeRequest inValue = new BasicHttp_NS.TestFaultWithKnownTypeRequest(); @@ -2379,127 +2379,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((BasicHttp_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.ThrowInvalidOperationExceptionAsync(BasicHttp_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { BasicHttp_NS.ThrowInvalidOperationExceptionRequest inValue = new BasicHttp_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((BasicHttp_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.GetDataUsingDataContractAsync(BasicHttp_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(BasicHttp_NS.CompositeType composite) { BasicHttp_NS.GetDataUsingDataContractRequest inValue = new BasicHttp_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((BasicHttp_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.ValidateMessagePropertyHeadersAsync(BasicHttp_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { BasicHttp_NS.ValidateMessagePropertyHeadersRequest inValue = new BasicHttp_NS.ValidateMessagePropertyHeadersRequest(); return ((BasicHttp_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.UserGetAuthTokenAsync(BasicHttp_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { BasicHttp_NS.UserGetAuthTokenRequest inValue = new BasicHttp_NS.UserGetAuthTokenRequest(); return ((BasicHttp_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(BasicHttp_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(BasicHttp_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(BasicHttp_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(BasicHttp_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(BasicHttp_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { BasicHttp_NS.EchoHttpRequestMessagePropertyRequest inValue = new BasicHttp_NS.EchoHttpRequestMessagePropertyRequest(); return ((BasicHttp_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.GetRestartServiceEndpointAsync(BasicHttp_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { BasicHttp_NS.GetRestartServiceEndpointRequest inValue = new BasicHttp_NS.GetRestartServiceEndpointRequest(); return ((BasicHttp_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(BasicHttp_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.LoginAsync(BasicHttp_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { BasicHttp_NS.LoginRequest inValue = new BasicHttp_NS.LoginRequest(); @@ -2508,145 +2508,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((BasicHttp_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.GetStreamFromStringAsync(BasicHttp_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { BasicHttp_NS.GetStreamFromStringRequest inValue = new BasicHttp_NS.GetStreamFromStringRequest(); inValue.data = data; return ((BasicHttp_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.GetStringFromStreamAsync(BasicHttp_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { BasicHttp_NS.GetStringFromStreamRequest inValue = new BasicHttp_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((BasicHttp_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoMessageParameterAsync(BasicHttp_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { BasicHttp_NS.EchoMessageParameterRequest inValue = new BasicHttp_NS.EchoMessageParameterRequest(); inValue.name = name; return ((BasicHttp_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoItemsAsync(BasicHttp_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { BasicHttp_NS.EchoItemsRequest inValue = new BasicHttp_NS.EchoItemsRequest(); inValue.objects = objects; return ((BasicHttp_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(BasicHttp_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.ReturnContentTypeAsync(BasicHttp_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { BasicHttp_NS.ReturnContentTypeRequest inValue = new BasicHttp_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((BasicHttp_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(BasicHttp_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { BasicHttp_NS.XmlMessageContractTestRequest inValue = new BasicHttp_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((BasicHttp_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(BasicHttp_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task BasicHttp_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(BasicHttp_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { BasicHttp_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new BasicHttp_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((BasicHttp_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((BasicHttp_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttp_NS.IWcfService.GetRequestHttpHeadersAsync(BasicHttp_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { BasicHttp_NS.GetRequestHttpHeadersRequest inValue = new BasicHttp_NS.GetRequestHttpHeadersRequest(); return ((BasicHttp_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Text_IWcfService)) @@ -2670,7 +2670,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Text_IWcfService)) @@ -2685,13 +2685,13 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + public enum EndpointConfiguration { - + Text_IWcfService, - + Mtom_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicSvcs/BasicHttps/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicSvcs/BasicHttps/Reference.cs index ec6e3259c56..83ea307040b 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicSvcs/BasicHttps/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeBasicSvcs/BasicHttps/Reference.cs @@ -9,17 +9,17 @@ namespace BasicHttps_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="BasicHttps_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(BasicHttps_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(BasicHttps_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(BasicHttps_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttps_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(BasicHttps_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttps_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttps_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(BasicHttps_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(BasicHttps_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(BasicHttps_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(BasicHttps_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(BasicHttps_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(BasicHttps_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(BasicHttps_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(BasicHttps_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(BasicHttps_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(BasicHttps_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(BasicHttps_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(BasicHttps_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(BasicHttps_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(BasicHttps_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(BasicHttps_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(BasicHttps_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(BasicHttps_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(BasicHttps_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(BasicHttps_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(BasicHttps_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(BasicHttps_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(BasicHttps_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(BasicHttps_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(BasicHttps_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(BasicHttps_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttps_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(BasicHttps_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttps_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(BasicHttps_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttps_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(BasicHttps_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttps_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(BasicHttps_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public BasicHttps_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(BasicHttps_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttps_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(BasicHttps_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public BasicHttps_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(BasicHttps_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,187 +2114,187 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public BasicHttps_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(BasicHttps_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : BasicHttps_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, BasicHttps_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoWithTimeoutAsync(BasicHttps_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { BasicHttps_NS.EchoWithTimeoutRequest inValue = new BasicHttps_NS.EchoWithTimeoutRequest(); @@ -2302,62 +2302,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((BasicHttps_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoAsync(BasicHttps_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { BasicHttps_NS.EchoRequest inValue = new BasicHttps_NS.EchoRequest(); inValue.message = message; return ((BasicHttps_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoComplexAsync(BasicHttps_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(BasicHttps_NS.ComplexCompositeType message) { BasicHttps_NS.EchoComplexRequest inValue = new BasicHttps_NS.EchoComplexRequest(); inValue.message = message; return ((BasicHttps_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.TestFaultAsync(BasicHttps_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { BasicHttps_NS.TestFaultRequest inValue = new BasicHttps_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((BasicHttps_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.TestFaultsAsync(BasicHttps_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { BasicHttps_NS.TestFaultsRequest inValue = new BasicHttps_NS.TestFaultsRequest(); @@ -2365,13 +2365,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((BasicHttps_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.TestFaultWithKnownTypeAsync(BasicHttps_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { BasicHttps_NS.TestFaultWithKnownTypeRequest inValue = new BasicHttps_NS.TestFaultWithKnownTypeRequest(); @@ -2379,127 +2379,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((BasicHttps_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.ThrowInvalidOperationExceptionAsync(BasicHttps_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { BasicHttps_NS.ThrowInvalidOperationExceptionRequest inValue = new BasicHttps_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((BasicHttps_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.GetDataUsingDataContractAsync(BasicHttps_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(BasicHttps_NS.CompositeType composite) { BasicHttps_NS.GetDataUsingDataContractRequest inValue = new BasicHttps_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((BasicHttps_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.ValidateMessagePropertyHeadersAsync(BasicHttps_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { BasicHttps_NS.ValidateMessagePropertyHeadersRequest inValue = new BasicHttps_NS.ValidateMessagePropertyHeadersRequest(); return ((BasicHttps_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.UserGetAuthTokenAsync(BasicHttps_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { BasicHttps_NS.UserGetAuthTokenRequest inValue = new BasicHttps_NS.UserGetAuthTokenRequest(); return ((BasicHttps_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(BasicHttps_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(BasicHttps_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(BasicHttps_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(BasicHttps_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(BasicHttps_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { BasicHttps_NS.EchoHttpRequestMessagePropertyRequest inValue = new BasicHttps_NS.EchoHttpRequestMessagePropertyRequest(); return ((BasicHttps_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.GetRestartServiceEndpointAsync(BasicHttps_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { BasicHttps_NS.GetRestartServiceEndpointRequest inValue = new BasicHttps_NS.GetRestartServiceEndpointRequest(); return ((BasicHttps_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(BasicHttps_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.LoginAsync(BasicHttps_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { BasicHttps_NS.LoginRequest inValue = new BasicHttps_NS.LoginRequest(); @@ -2508,145 +2508,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((BasicHttps_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.GetStreamFromStringAsync(BasicHttps_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { BasicHttps_NS.GetStreamFromStringRequest inValue = new BasicHttps_NS.GetStreamFromStringRequest(); inValue.data = data; return ((BasicHttps_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.GetStringFromStreamAsync(BasicHttps_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { BasicHttps_NS.GetStringFromStreamRequest inValue = new BasicHttps_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((BasicHttps_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoMessageParameterAsync(BasicHttps_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { BasicHttps_NS.EchoMessageParameterRequest inValue = new BasicHttps_NS.EchoMessageParameterRequest(); inValue.name = name; return ((BasicHttps_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoItemsAsync(BasicHttps_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { BasicHttps_NS.EchoItemsRequest inValue = new BasicHttps_NS.EchoItemsRequest(); inValue.objects = objects; return ((BasicHttps_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(BasicHttps_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.ReturnContentTypeAsync(BasicHttps_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { BasicHttps_NS.ReturnContentTypeRequest inValue = new BasicHttps_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((BasicHttps_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(BasicHttps_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { BasicHttps_NS.XmlMessageContractTestRequest inValue = new BasicHttps_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((BasicHttps_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(BasicHttps_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task BasicHttps_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(BasicHttps_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { BasicHttps_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new BasicHttps_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((BasicHttps_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((BasicHttps_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task BasicHttps_NS.IWcfService.GetRequestHttpHeadersAsync(BasicHttps_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { BasicHttps_NS.GetRequestHttpHeadersRequest inValue = new BasicHttps_NS.GetRequestHttpHeadersRequest(); return ((BasicHttps_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Text_IWcfService)) @@ -2672,7 +2672,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Text_IWcfService)) @@ -2685,13 +2685,13 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + public enum EndpointConfiguration { - + Text_IWcfService, - + Mtom_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttp/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttp/Reference.cs index 59303f71608..44e284ded5f 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttp/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttp/Reference.cs @@ -9,17 +9,17 @@ namespace NetHttp_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="NetHttp_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(NetHttp_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(NetHttp_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(NetHttp_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttp_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(NetHttp_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttp_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttp_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(NetHttp_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttp_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(NetHttp_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(NetHttp_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(NetHttp_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(NetHttp_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(NetHttp_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(NetHttp_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(NetHttp_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(NetHttp_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(NetHttp_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(NetHttp_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(NetHttp_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(NetHttp_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(NetHttp_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(NetHttp_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(NetHttp_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(NetHttp_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(NetHttp_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(NetHttp_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(NetHttp_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(NetHttp_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(NetHttp_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(NetHttp_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(NetHttp_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttp_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(NetHttp_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttp_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(NetHttp_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttp_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(NetHttp_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttp_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(NetHttp_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public NetHttp_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(NetHttp_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttp_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(NetHttp_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttp_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(NetHttp_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,187 +2114,187 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public NetHttp_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(NetHttp_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : NetHttp_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, NetHttp_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoWithTimeoutAsync(NetHttp_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { NetHttp_NS.EchoWithTimeoutRequest inValue = new NetHttp_NS.EchoWithTimeoutRequest(); @@ -2302,62 +2302,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((NetHttp_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoAsync(NetHttp_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { NetHttp_NS.EchoRequest inValue = new NetHttp_NS.EchoRequest(); inValue.message = message; return ((NetHttp_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoComplexAsync(NetHttp_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(NetHttp_NS.ComplexCompositeType message) { NetHttp_NS.EchoComplexRequest inValue = new NetHttp_NS.EchoComplexRequest(); inValue.message = message; return ((NetHttp_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.TestFaultAsync(NetHttp_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { NetHttp_NS.TestFaultRequest inValue = new NetHttp_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((NetHttp_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.TestFaultsAsync(NetHttp_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { NetHttp_NS.TestFaultsRequest inValue = new NetHttp_NS.TestFaultsRequest(); @@ -2365,13 +2365,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((NetHttp_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.TestFaultWithKnownTypeAsync(NetHttp_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { NetHttp_NS.TestFaultWithKnownTypeRequest inValue = new NetHttp_NS.TestFaultWithKnownTypeRequest(); @@ -2379,127 +2379,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((NetHttp_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.ThrowInvalidOperationExceptionAsync(NetHttp_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { NetHttp_NS.ThrowInvalidOperationExceptionRequest inValue = new NetHttp_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((NetHttp_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.GetDataUsingDataContractAsync(NetHttp_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(NetHttp_NS.CompositeType composite) { NetHttp_NS.GetDataUsingDataContractRequest inValue = new NetHttp_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((NetHttp_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.ValidateMessagePropertyHeadersAsync(NetHttp_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { NetHttp_NS.ValidateMessagePropertyHeadersRequest inValue = new NetHttp_NS.ValidateMessagePropertyHeadersRequest(); return ((NetHttp_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.UserGetAuthTokenAsync(NetHttp_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { NetHttp_NS.UserGetAuthTokenRequest inValue = new NetHttp_NS.UserGetAuthTokenRequest(); return ((NetHttp_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(NetHttp_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(NetHttp_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(NetHttp_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(NetHttp_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(NetHttp_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { NetHttp_NS.EchoHttpRequestMessagePropertyRequest inValue = new NetHttp_NS.EchoHttpRequestMessagePropertyRequest(); return ((NetHttp_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.GetRestartServiceEndpointAsync(NetHttp_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { NetHttp_NS.GetRestartServiceEndpointRequest inValue = new NetHttp_NS.GetRestartServiceEndpointRequest(); return ((NetHttp_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(NetHttp_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.LoginAsync(NetHttp_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { NetHttp_NS.LoginRequest inValue = new NetHttp_NS.LoginRequest(); @@ -2508,145 +2508,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((NetHttp_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.GetStreamFromStringAsync(NetHttp_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { NetHttp_NS.GetStreamFromStringRequest inValue = new NetHttp_NS.GetStreamFromStringRequest(); inValue.data = data; return ((NetHttp_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.GetStringFromStreamAsync(NetHttp_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { NetHttp_NS.GetStringFromStreamRequest inValue = new NetHttp_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((NetHttp_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoMessageParameterAsync(NetHttp_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { NetHttp_NS.EchoMessageParameterRequest inValue = new NetHttp_NS.EchoMessageParameterRequest(); inValue.name = name; return ((NetHttp_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoItemsAsync(NetHttp_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { NetHttp_NS.EchoItemsRequest inValue = new NetHttp_NS.EchoItemsRequest(); inValue.objects = objects; return ((NetHttp_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(NetHttp_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.ReturnContentTypeAsync(NetHttp_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { NetHttp_NS.ReturnContentTypeRequest inValue = new NetHttp_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((NetHttp_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(NetHttp_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { NetHttp_NS.XmlMessageContractTestRequest inValue = new NetHttp_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((NetHttp_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(NetHttp_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task NetHttp_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(NetHttp_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { NetHttp_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new NetHttp_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((NetHttp_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((NetHttp_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttp_NS.IWcfService.GetRequestHttpHeadersAsync(NetHttp_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { NetHttp_NS.GetRequestHttpHeadersRequest inValue = new NetHttp_NS.GetRequestHttpHeadersRequest(); return ((NetHttp_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Binary_IWcfService)) @@ -2681,7 +2681,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Binary_IWcfService)) @@ -2699,15 +2699,15 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + public enum EndpointConfiguration { - + Binary_IWcfService, - + Text_IWcfService, - + Mtom_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttpWebSockets/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttpWebSockets/Reference.cs index a330f427565..72e583a491d 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttpWebSockets/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttpWebSockets/Reference.cs @@ -9,17 +9,17 @@ namespace NetHttpWebSockets_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="NetHttpWebSockets_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(NetHttpWebSockets_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(NetHttpWebSockets_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(NetHttpWebSockets_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttpWebSockets_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(NetHttpWebSockets_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttpWebSockets_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttpWebSockets_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(NetHttpWebSockets_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttpWebSockets_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(NetHttpWebSockets_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(NetHttpWebSockets_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(NetHttpWebSockets_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(NetHttpWebSockets_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(NetHttpWebSockets_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(NetHttpWebSockets_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(NetHttpWebSockets_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(NetHttpWebSockets_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(NetHttpWebSockets_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(NetHttpWebSockets_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(NetHttpWebSockets_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(NetHttpWebSockets_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(NetHttpWebSockets_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(NetHttpWebSockets_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(NetHttpWebSockets_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(NetHttpWebSockets_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(NetHttpWebSockets_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(NetHttpWebSockets_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(NetHttpWebSockets_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(NetHttpWebSockets_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(NetHttpWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(NetHttpWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(NetHttpWebSockets_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpWebSockets_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(NetHttpWebSockets_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpWebSockets_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(NetHttpWebSockets_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpWebSockets_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(NetHttpWebSockets_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpWebSockets_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(NetHttpWebSockets_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public NetHttpWebSockets_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(NetHttpWebSockets_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpWebSockets_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(NetHttpWebSockets_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpWebSockets_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(NetHttpWebSockets_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,194 +2114,194 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public NetHttpWebSockets_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(NetHttpWebSockets_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : NetHttpWebSockets_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, NetHttpWebSockets_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient() : + + public WcfServiceClient() : base(WcfServiceClient.GetDefaultBinding(), WcfServiceClient.GetDefaultEndpointAddress()) { this.Endpoint.Name = EndpointConfiguration.NetHttpWebSockets_IWcfService.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoWithTimeoutAsync(NetHttpWebSockets_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { NetHttpWebSockets_NS.EchoWithTimeoutRequest inValue = new NetHttpWebSockets_NS.EchoWithTimeoutRequest(); @@ -2309,62 +2309,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoAsync(NetHttpWebSockets_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { NetHttpWebSockets_NS.EchoRequest inValue = new NetHttpWebSockets_NS.EchoRequest(); inValue.message = message; return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoComplexAsync(NetHttpWebSockets_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(NetHttpWebSockets_NS.ComplexCompositeType message) { NetHttpWebSockets_NS.EchoComplexRequest inValue = new NetHttpWebSockets_NS.EchoComplexRequest(); inValue.message = message; return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.TestFaultAsync(NetHttpWebSockets_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { NetHttpWebSockets_NS.TestFaultRequest inValue = new NetHttpWebSockets_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((NetHttpWebSockets_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.TestFaultsAsync(NetHttpWebSockets_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { NetHttpWebSockets_NS.TestFaultsRequest inValue = new NetHttpWebSockets_NS.TestFaultsRequest(); @@ -2372,13 +2372,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((NetHttpWebSockets_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.TestFaultWithKnownTypeAsync(NetHttpWebSockets_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { NetHttpWebSockets_NS.TestFaultWithKnownTypeRequest inValue = new NetHttpWebSockets_NS.TestFaultWithKnownTypeRequest(); @@ -2386,127 +2386,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((NetHttpWebSockets_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.ThrowInvalidOperationExceptionAsync(NetHttpWebSockets_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { NetHttpWebSockets_NS.ThrowInvalidOperationExceptionRequest inValue = new NetHttpWebSockets_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((NetHttpWebSockets_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.GetDataUsingDataContractAsync(NetHttpWebSockets_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(NetHttpWebSockets_NS.CompositeType composite) { NetHttpWebSockets_NS.GetDataUsingDataContractRequest inValue = new NetHttpWebSockets_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((NetHttpWebSockets_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.ValidateMessagePropertyHeadersAsync(NetHttpWebSockets_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { NetHttpWebSockets_NS.ValidateMessagePropertyHeadersRequest inValue = new NetHttpWebSockets_NS.ValidateMessagePropertyHeadersRequest(); return ((NetHttpWebSockets_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.UserGetAuthTokenAsync(NetHttpWebSockets_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { NetHttpWebSockets_NS.UserGetAuthTokenRequest inValue = new NetHttpWebSockets_NS.UserGetAuthTokenRequest(); return ((NetHttpWebSockets_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(NetHttpWebSockets_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(NetHttpWebSockets_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(NetHttpWebSockets_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(NetHttpWebSockets_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(NetHttpWebSockets_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { NetHttpWebSockets_NS.EchoHttpRequestMessagePropertyRequest inValue = new NetHttpWebSockets_NS.EchoHttpRequestMessagePropertyRequest(); return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.GetRestartServiceEndpointAsync(NetHttpWebSockets_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { NetHttpWebSockets_NS.GetRestartServiceEndpointRequest inValue = new NetHttpWebSockets_NS.GetRestartServiceEndpointRequest(); return ((NetHttpWebSockets_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(NetHttpWebSockets_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.LoginAsync(NetHttpWebSockets_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { NetHttpWebSockets_NS.LoginRequest inValue = new NetHttpWebSockets_NS.LoginRequest(); @@ -2515,145 +2515,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((NetHttpWebSockets_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.GetStreamFromStringAsync(NetHttpWebSockets_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { NetHttpWebSockets_NS.GetStreamFromStringRequest inValue = new NetHttpWebSockets_NS.GetStreamFromStringRequest(); inValue.data = data; return ((NetHttpWebSockets_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.GetStringFromStreamAsync(NetHttpWebSockets_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { NetHttpWebSockets_NS.GetStringFromStreamRequest inValue = new NetHttpWebSockets_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((NetHttpWebSockets_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoMessageParameterAsync(NetHttpWebSockets_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { NetHttpWebSockets_NS.EchoMessageParameterRequest inValue = new NetHttpWebSockets_NS.EchoMessageParameterRequest(); inValue.name = name; return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoItemsAsync(NetHttpWebSockets_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { NetHttpWebSockets_NS.EchoItemsRequest inValue = new NetHttpWebSockets_NS.EchoItemsRequest(); inValue.objects = objects; return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(NetHttpWebSockets_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.ReturnContentTypeAsync(NetHttpWebSockets_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { NetHttpWebSockets_NS.ReturnContentTypeRequest inValue = new NetHttpWebSockets_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((NetHttpWebSockets_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(NetHttpWebSockets_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { NetHttpWebSockets_NS.XmlMessageContractTestRequest inValue = new NetHttpWebSockets_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(NetHttpWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(NetHttpWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { NetHttpWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new NetHttpWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((NetHttpWebSockets_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpWebSockets_NS.IWcfService.GetRequestHttpHeadersAsync(NetHttpWebSockets_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { NetHttpWebSockets_NS.GetRequestHttpHeadersRequest inValue = new NetHttpWebSockets_NS.GetRequestHttpHeadersRequest(); return ((NetHttpWebSockets_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.NetHttpWebSockets_IWcfService)) @@ -2667,7 +2667,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.NetHttpWebSockets_IWcfService)) @@ -2676,21 +2676,21 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.Channels.Binding GetDefaultBinding() { return WcfServiceClient.GetBindingForEndpoint(EndpointConfiguration.NetHttpWebSockets_IWcfService); } - + private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress() { return WcfServiceClient.GetEndpointAddress(EndpointConfiguration.NetHttpWebSockets_IWcfService); } - + public enum EndpointConfiguration { - + NetHttpWebSockets_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttps/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttps/Reference.cs index 86e29cb3597..97b9a5d9f8f 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttps/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttps/Reference.cs @@ -9,17 +9,17 @@ namespace NetHttps_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="NetHttps_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(NetHttps_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(NetHttps_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(NetHttps_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttps_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(NetHttps_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttps_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttps_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(NetHttps_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttps_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(NetHttps_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(NetHttps_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(NetHttps_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(NetHttps_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(NetHttps_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(NetHttps_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(NetHttps_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(NetHttps_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(NetHttps_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(NetHttps_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(NetHttps_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(NetHttps_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(NetHttps_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(NetHttps_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(NetHttps_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(NetHttps_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(NetHttps_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(NetHttps_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(NetHttps_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(NetHttps_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(NetHttps_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(NetHttps_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(NetHttps_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttps_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(NetHttps_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttps_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(NetHttps_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttps_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(NetHttps_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttps_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(NetHttps_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public NetHttps_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(NetHttps_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttps_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(NetHttps_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttps_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(NetHttps_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,187 +2114,187 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public NetHttps_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(NetHttps_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : NetHttps_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, NetHttps_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoWithTimeoutAsync(NetHttps_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { NetHttps_NS.EchoWithTimeoutRequest inValue = new NetHttps_NS.EchoWithTimeoutRequest(); @@ -2302,62 +2302,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((NetHttps_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoAsync(NetHttps_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { NetHttps_NS.EchoRequest inValue = new NetHttps_NS.EchoRequest(); inValue.message = message; return ((NetHttps_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoComplexAsync(NetHttps_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(NetHttps_NS.ComplexCompositeType message) { NetHttps_NS.EchoComplexRequest inValue = new NetHttps_NS.EchoComplexRequest(); inValue.message = message; return ((NetHttps_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.TestFaultAsync(NetHttps_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { NetHttps_NS.TestFaultRequest inValue = new NetHttps_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((NetHttps_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.TestFaultsAsync(NetHttps_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { NetHttps_NS.TestFaultsRequest inValue = new NetHttps_NS.TestFaultsRequest(); @@ -2365,13 +2365,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((NetHttps_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.TestFaultWithKnownTypeAsync(NetHttps_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { NetHttps_NS.TestFaultWithKnownTypeRequest inValue = new NetHttps_NS.TestFaultWithKnownTypeRequest(); @@ -2379,127 +2379,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((NetHttps_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.ThrowInvalidOperationExceptionAsync(NetHttps_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { NetHttps_NS.ThrowInvalidOperationExceptionRequest inValue = new NetHttps_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((NetHttps_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.GetDataUsingDataContractAsync(NetHttps_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(NetHttps_NS.CompositeType composite) { NetHttps_NS.GetDataUsingDataContractRequest inValue = new NetHttps_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((NetHttps_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.ValidateMessagePropertyHeadersAsync(NetHttps_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { NetHttps_NS.ValidateMessagePropertyHeadersRequest inValue = new NetHttps_NS.ValidateMessagePropertyHeadersRequest(); return ((NetHttps_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.UserGetAuthTokenAsync(NetHttps_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { NetHttps_NS.UserGetAuthTokenRequest inValue = new NetHttps_NS.UserGetAuthTokenRequest(); return ((NetHttps_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(NetHttps_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(NetHttps_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(NetHttps_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(NetHttps_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(NetHttps_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { NetHttps_NS.EchoHttpRequestMessagePropertyRequest inValue = new NetHttps_NS.EchoHttpRequestMessagePropertyRequest(); return ((NetHttps_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.GetRestartServiceEndpointAsync(NetHttps_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { NetHttps_NS.GetRestartServiceEndpointRequest inValue = new NetHttps_NS.GetRestartServiceEndpointRequest(); return ((NetHttps_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(NetHttps_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.LoginAsync(NetHttps_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { NetHttps_NS.LoginRequest inValue = new NetHttps_NS.LoginRequest(); @@ -2508,145 +2508,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((NetHttps_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.GetStreamFromStringAsync(NetHttps_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { NetHttps_NS.GetStreamFromStringRequest inValue = new NetHttps_NS.GetStreamFromStringRequest(); inValue.data = data; return ((NetHttps_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.GetStringFromStreamAsync(NetHttps_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { NetHttps_NS.GetStringFromStreamRequest inValue = new NetHttps_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((NetHttps_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoMessageParameterAsync(NetHttps_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { NetHttps_NS.EchoMessageParameterRequest inValue = new NetHttps_NS.EchoMessageParameterRequest(); inValue.name = name; return ((NetHttps_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoItemsAsync(NetHttps_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { NetHttps_NS.EchoItemsRequest inValue = new NetHttps_NS.EchoItemsRequest(); inValue.objects = objects; return ((NetHttps_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(NetHttps_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.ReturnContentTypeAsync(NetHttps_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { NetHttps_NS.ReturnContentTypeRequest inValue = new NetHttps_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((NetHttps_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(NetHttps_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { NetHttps_NS.XmlMessageContractTestRequest inValue = new NetHttps_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((NetHttps_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(NetHttps_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task NetHttps_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(NetHttps_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { NetHttps_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new NetHttps_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((NetHttps_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((NetHttps_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttps_NS.IWcfService.GetRequestHttpHeadersAsync(NetHttps_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { NetHttps_NS.GetRequestHttpHeadersRequest inValue = new NetHttps_NS.GetRequestHttpHeadersRequest(); return ((NetHttps_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Binary_IWcfService)) @@ -2683,7 +2683,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Binary_IWcfService)) @@ -2700,15 +2700,15 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + public enum EndpointConfiguration { - + Binary_IWcfService, - + Text_IWcfService, - + Mtom_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttpsWebSockets/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttpsWebSockets/Reference.cs index 8aa3493be70..d4bf406a2a2 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttpsWebSockets/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNetHttpSvcs/NetHttpsWebSockets/Reference.cs @@ -9,17 +9,17 @@ namespace NetHttpsWebSockets_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="NetHttpsWebSockets_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(NetHttpsWebSockets_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(NetHttpsWebSockets_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(NetHttpsWebSockets_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttpsWebSockets_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(NetHttpsWebSockets_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttpsWebSockets_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttpsWebSockets_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(NetHttpsWebSockets_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(NetHttpsWebSockets_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(NetHttpsWebSockets_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(NetHttpsWebSockets_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(NetHttpsWebSockets_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(NetHttpsWebSockets_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(NetHttpsWebSockets_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(NetHttpsWebSockets_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(NetHttpsWebSockets_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(NetHttpsWebSockets_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(NetHttpsWebSockets_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(NetHttpsWebSockets_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(NetHttpsWebSockets_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(NetHttpsWebSockets_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(NetHttpsWebSockets_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(NetHttpsWebSockets_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(NetHttpsWebSockets_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(NetHttpsWebSockets_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(NetHttpsWebSockets_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(NetHttpsWebSockets_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(NetHttpsWebSockets_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(NetHttpsWebSockets_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(NetHttpsWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(NetHttpsWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(NetHttpsWebSockets_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpsWebSockets_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(NetHttpsWebSockets_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpsWebSockets_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(NetHttpsWebSockets_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpsWebSockets_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(NetHttpsWebSockets_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpsWebSockets_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(NetHttpsWebSockets_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public NetHttpsWebSockets_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(NetHttpsWebSockets_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpsWebSockets_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(NetHttpsWebSockets_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public NetHttpsWebSockets_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(NetHttpsWebSockets_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,194 +2114,194 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public NetHttpsWebSockets_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(NetHttpsWebSockets_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : NetHttpsWebSockets_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, NetHttpsWebSockets_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient() : + + public WcfServiceClient() : base(WcfServiceClient.GetDefaultBinding(), WcfServiceClient.GetDefaultEndpointAddress()) { this.Endpoint.Name = EndpointConfiguration.NetHttpsWebSockets_IWcfService.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoWithTimeoutAsync(NetHttpsWebSockets_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { NetHttpsWebSockets_NS.EchoWithTimeoutRequest inValue = new NetHttpsWebSockets_NS.EchoWithTimeoutRequest(); @@ -2309,62 +2309,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoAsync(NetHttpsWebSockets_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { NetHttpsWebSockets_NS.EchoRequest inValue = new NetHttpsWebSockets_NS.EchoRequest(); inValue.message = message; return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoComplexAsync(NetHttpsWebSockets_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(NetHttpsWebSockets_NS.ComplexCompositeType message) { NetHttpsWebSockets_NS.EchoComplexRequest inValue = new NetHttpsWebSockets_NS.EchoComplexRequest(); inValue.message = message; return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.TestFaultAsync(NetHttpsWebSockets_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { NetHttpsWebSockets_NS.TestFaultRequest inValue = new NetHttpsWebSockets_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((NetHttpsWebSockets_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.TestFaultsAsync(NetHttpsWebSockets_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { NetHttpsWebSockets_NS.TestFaultsRequest inValue = new NetHttpsWebSockets_NS.TestFaultsRequest(); @@ -2372,13 +2372,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((NetHttpsWebSockets_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.TestFaultWithKnownTypeAsync(NetHttpsWebSockets_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { NetHttpsWebSockets_NS.TestFaultWithKnownTypeRequest inValue = new NetHttpsWebSockets_NS.TestFaultWithKnownTypeRequest(); @@ -2386,127 +2386,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((NetHttpsWebSockets_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.ThrowInvalidOperationExceptionAsync(NetHttpsWebSockets_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { NetHttpsWebSockets_NS.ThrowInvalidOperationExceptionRequest inValue = new NetHttpsWebSockets_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((NetHttpsWebSockets_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.GetDataUsingDataContractAsync(NetHttpsWebSockets_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(NetHttpsWebSockets_NS.CompositeType composite) { NetHttpsWebSockets_NS.GetDataUsingDataContractRequest inValue = new NetHttpsWebSockets_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((NetHttpsWebSockets_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.ValidateMessagePropertyHeadersAsync(NetHttpsWebSockets_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { NetHttpsWebSockets_NS.ValidateMessagePropertyHeadersRequest inValue = new NetHttpsWebSockets_NS.ValidateMessagePropertyHeadersRequest(); return ((NetHttpsWebSockets_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.UserGetAuthTokenAsync(NetHttpsWebSockets_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { NetHttpsWebSockets_NS.UserGetAuthTokenRequest inValue = new NetHttpsWebSockets_NS.UserGetAuthTokenRequest(); return ((NetHttpsWebSockets_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(NetHttpsWebSockets_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(NetHttpsWebSockets_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(NetHttpsWebSockets_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(NetHttpsWebSockets_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(NetHttpsWebSockets_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { NetHttpsWebSockets_NS.EchoHttpRequestMessagePropertyRequest inValue = new NetHttpsWebSockets_NS.EchoHttpRequestMessagePropertyRequest(); return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.GetRestartServiceEndpointAsync(NetHttpsWebSockets_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { NetHttpsWebSockets_NS.GetRestartServiceEndpointRequest inValue = new NetHttpsWebSockets_NS.GetRestartServiceEndpointRequest(); return ((NetHttpsWebSockets_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(NetHttpsWebSockets_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.LoginAsync(NetHttpsWebSockets_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { NetHttpsWebSockets_NS.LoginRequest inValue = new NetHttpsWebSockets_NS.LoginRequest(); @@ -2515,145 +2515,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((NetHttpsWebSockets_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.GetStreamFromStringAsync(NetHttpsWebSockets_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { NetHttpsWebSockets_NS.GetStreamFromStringRequest inValue = new NetHttpsWebSockets_NS.GetStreamFromStringRequest(); inValue.data = data; return ((NetHttpsWebSockets_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.GetStringFromStreamAsync(NetHttpsWebSockets_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { NetHttpsWebSockets_NS.GetStringFromStreamRequest inValue = new NetHttpsWebSockets_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((NetHttpsWebSockets_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoMessageParameterAsync(NetHttpsWebSockets_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { NetHttpsWebSockets_NS.EchoMessageParameterRequest inValue = new NetHttpsWebSockets_NS.EchoMessageParameterRequest(); inValue.name = name; return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoItemsAsync(NetHttpsWebSockets_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { NetHttpsWebSockets_NS.EchoItemsRequest inValue = new NetHttpsWebSockets_NS.EchoItemsRequest(); inValue.objects = objects; return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(NetHttpsWebSockets_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.ReturnContentTypeAsync(NetHttpsWebSockets_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { NetHttpsWebSockets_NS.ReturnContentTypeRequest inValue = new NetHttpsWebSockets_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((NetHttpsWebSockets_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(NetHttpsWebSockets_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { NetHttpsWebSockets_NS.XmlMessageContractTestRequest inValue = new NetHttpsWebSockets_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(NetHttpsWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(NetHttpsWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { NetHttpsWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new NetHttpsWebSockets_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((NetHttpsWebSockets_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task NetHttpsWebSockets_NS.IWcfService.GetRequestHttpHeadersAsync(NetHttpsWebSockets_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { NetHttpsWebSockets_NS.GetRequestHttpHeadersRequest inValue = new NetHttpsWebSockets_NS.GetRequestHttpHeadersRequest(); return ((NetHttpsWebSockets_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.NetHttpsWebSockets_IWcfService)) @@ -2668,7 +2668,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.NetHttpsWebSockets_IWcfService)) @@ -2677,21 +2677,21 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.Channels.Binding GetDefaultBinding() { return WcfServiceClient.GetBindingForEndpoint(EndpointConfiguration.NetHttpsWebSockets_IWcfService); } - + private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress() { return WcfServiceClient.GetEndpointAddress(EndpointConfiguration.NetHttpsWebSockets_IWcfService); } - + public enum EndpointConfiguration { - + NetHttpsWebSockets_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNettcpTransSecMessCredsUserName/TcpTransSecMessCredsUserName/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNettcpTransSecMessCredsUserName/TcpTransSecMessCredsUserName/Reference.cs index d0955d67e3c..7c6718496ad 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNettcpTransSecMessCredsUserName/TcpTransSecMessCredsUserName/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WcfRuntimeNettcpTransSecMessCredsUserName/TcpTransSecMessCredsUserName/Reference.cs @@ -9,17 +9,17 @@ namespace TcpTransSecMessCredsUserName_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="TcpTransSecMessCredsUserName_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(TcpTransSecMessCredsUserName_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(TcpTransSecMessCredsUserName_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(TcpTransSecMessCredsUserName_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(TcpTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(TcpTransSecMessCredsUserName_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(TcpTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(TcpTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(TcpTransSecMessCredsUserName_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(TcpTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(TcpTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(TcpTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(TcpTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(TcpTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(TcpTransSecMessCredsUserName_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(TcpTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(TcpTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(TcpTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(TcpTransSecMessCredsUserName_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(TcpTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(TcpTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(TcpTransSecMessCredsUserName_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(TcpTransSecMessCredsUserName_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(TcpTransSecMessCredsUserName_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(TcpTransSecMessCredsUserName_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(TcpTransSecMessCredsUserName_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(TcpTransSecMessCredsUserName_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(TcpTransSecMessCredsUserName_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(TcpTransSecMessCredsUserName_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(TcpTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public TcpTransSecMessCredsUserName_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(TcpTransSecMessCredsUserName_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public TcpTransSecMessCredsUserName_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(TcpTransSecMessCredsUserName_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public TcpTransSecMessCredsUserName_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(TcpTransSecMessCredsUserName_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public TcpTransSecMessCredsUserName_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(TcpTransSecMessCredsUserName_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public TcpTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(TcpTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public TcpTransSecMessCredsUserName_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(TcpTransSecMessCredsUserName_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public TcpTransSecMessCredsUserName_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(TcpTransSecMessCredsUserName_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,194 +2114,194 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public TcpTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(TcpTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : TcpTransSecMessCredsUserName_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, TcpTransSecMessCredsUserName_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient() : + + public WcfServiceClient() : base(WcfServiceClient.GetDefaultBinding(), WcfServiceClient.GetDefaultEndpointAddress()) { this.Endpoint.Name = EndpointConfiguration.Tcp_message_credentials_username_IWcfService.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoWithTimeoutAsync(TcpTransSecMessCredsUserName_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { TcpTransSecMessCredsUserName_NS.EchoWithTimeoutRequest inValue = new TcpTransSecMessCredsUserName_NS.EchoWithTimeoutRequest(); @@ -2309,62 +2309,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoAsync(TcpTransSecMessCredsUserName_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { TcpTransSecMessCredsUserName_NS.EchoRequest inValue = new TcpTransSecMessCredsUserName_NS.EchoRequest(); inValue.message = message; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoComplexAsync(TcpTransSecMessCredsUserName_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(TcpTransSecMessCredsUserName_NS.ComplexCompositeType message) { TcpTransSecMessCredsUserName_NS.EchoComplexRequest inValue = new TcpTransSecMessCredsUserName_NS.EchoComplexRequest(); inValue.message = message; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.TestFaultAsync(TcpTransSecMessCredsUserName_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { TcpTransSecMessCredsUserName_NS.TestFaultRequest inValue = new TcpTransSecMessCredsUserName_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.TestFaultsAsync(TcpTransSecMessCredsUserName_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { TcpTransSecMessCredsUserName_NS.TestFaultsRequest inValue = new TcpTransSecMessCredsUserName_NS.TestFaultsRequest(); @@ -2372,13 +2372,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.TestFaultWithKnownTypeAsync(TcpTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { TcpTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest inValue = new TcpTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest(); @@ -2386,127 +2386,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.ThrowInvalidOperationExceptionAsync(TcpTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { TcpTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest inValue = new TcpTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.GetDataUsingDataContractAsync(TcpTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(TcpTransSecMessCredsUserName_NS.CompositeType composite) { TcpTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest inValue = new TcpTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.ValidateMessagePropertyHeadersAsync(TcpTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { TcpTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest inValue = new TcpTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest(); return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.UserGetAuthTokenAsync(TcpTransSecMessCredsUserName_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { TcpTransSecMessCredsUserName_NS.UserGetAuthTokenRequest inValue = new TcpTransSecMessCredsUserName_NS.UserGetAuthTokenRequest(); return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(TcpTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(TcpTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(TcpTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(TcpTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(TcpTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { TcpTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest inValue = new TcpTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest(); return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.GetRestartServiceEndpointAsync(TcpTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { TcpTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest inValue = new TcpTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest(); return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(TcpTransSecMessCredsUserName_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.LoginAsync(TcpTransSecMessCredsUserName_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { TcpTransSecMessCredsUserName_NS.LoginRequest inValue = new TcpTransSecMessCredsUserName_NS.LoginRequest(); @@ -2515,145 +2515,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.GetStreamFromStringAsync(TcpTransSecMessCredsUserName_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { TcpTransSecMessCredsUserName_NS.GetStreamFromStringRequest inValue = new TcpTransSecMessCredsUserName_NS.GetStreamFromStringRequest(); inValue.data = data; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.GetStringFromStreamAsync(TcpTransSecMessCredsUserName_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { TcpTransSecMessCredsUserName_NS.GetStringFromStreamRequest inValue = new TcpTransSecMessCredsUserName_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoMessageParameterAsync(TcpTransSecMessCredsUserName_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { TcpTransSecMessCredsUserName_NS.EchoMessageParameterRequest inValue = new TcpTransSecMessCredsUserName_NS.EchoMessageParameterRequest(); inValue.name = name; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoItemsAsync(TcpTransSecMessCredsUserName_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { TcpTransSecMessCredsUserName_NS.EchoItemsRequest inValue = new TcpTransSecMessCredsUserName_NS.EchoItemsRequest(); inValue.objects = objects; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(TcpTransSecMessCredsUserName_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.ReturnContentTypeAsync(TcpTransSecMessCredsUserName_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { TcpTransSecMessCredsUserName_NS.ReturnContentTypeRequest inValue = new TcpTransSecMessCredsUserName_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequest inValue = new TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new TcpTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task TcpTransSecMessCredsUserName_NS.IWcfService.GetRequestHttpHeadersAsync(TcpTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { TcpTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest inValue = new TcpTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest(); return ((TcpTransSecMessCredsUserName_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Tcp_message_credentials_username_IWcfService)) @@ -2668,7 +2668,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.Tcp_message_credentials_username_IWcfService)) @@ -2678,21 +2678,21 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.Channels.Binding GetDefaultBinding() { return WcfServiceClient.GetBindingForEndpoint(EndpointConfiguration.Tcp_message_credentials_username_IWcfService); } - + private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress() { return WcfServiceClient.GetEndpointAddress(EndpointConfiguration.Tcp_message_credentials_username_IWcfService); } - + public enum EndpointConfiguration { - + Tcp_message_credentials_username_IWcfService, } } -} \ No newline at end of file +} diff --git a/src/dotnet-svcutil/lib/tests/Baselines/WsHttpBindingAndws2007HttpBindingTransSecMessCredsUserName/HttpsTransSecMessCredsUserName/Reference.cs b/src/dotnet-svcutil/lib/tests/Baselines/WsHttpBindingAndws2007HttpBindingTransSecMessCredsUserName/HttpsTransSecMessCredsUserName/Reference.cs index f6926cfe49a..11f1db9ad29 100644 --- a/src/dotnet-svcutil/lib/tests/Baselines/WsHttpBindingAndws2007HttpBindingTransSecMessCredsUserName/HttpsTransSecMessCredsUserName/Reference.cs +++ b/src/dotnet-svcutil/lib/tests/Baselines/WsHttpBindingAndws2007HttpBindingTransSecMessCredsUserName/HttpsTransSecMessCredsUserName/Reference.cs @@ -9,17 +9,17 @@ namespace HttpsTransSecMessCredsUserName_NS { - - + + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class FaultDetail { - + private string messageField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Message @@ -34,78 +34,78 @@ public string Message } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ComplexCompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private byte[] byteArrayValueField; - + private int[] charArrayValueField; - + private int charValueField; - + private bool charValueFieldSpecified; - + private System.DateTime dateTimeValueField; - + private bool dateTimeValueFieldSpecified; - + private DayOfWeek dayOfWeekValueField; - + private bool dayOfWeekValueFieldSpecified; - + private double doubleValueField; - + private bool doubleValueFieldSpecified; - + private float floatValueField; - + private bool floatValueFieldSpecified; - + private string guidValueField; - + private int intValueField; - + private bool intValueFieldSpecified; - + private long longValueField; - + private bool longValueFieldSpecified; - + private string longerStringValueField; - + private sbyte sbyteValueField; - + private bool sbyteValueFieldSpecified; - + private short shortValueField; - + private bool shortValueFieldSpecified; - + private string stringValueField; - + private string timeSpanValueField; - + private uint uintValueField; - + private bool uintValueFieldSpecified; - + private ulong ulongValueField; - + private bool ulongValueFieldSpecified; - + private ushort ushortValueField; - + private bool ushortValueFieldSpecified; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -119,7 +119,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -133,7 +133,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", IsNullable=true, Order=1)] public byte[] ByteArrayValue @@ -147,7 +147,7 @@ public byte[] ByteArrayValue this.byteArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=2)] [System.Xml.Serialization.XmlArrayItemAttribute("char", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -162,7 +162,7 @@ public int[] CharArrayValue this.charArrayValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public int CharValue @@ -176,7 +176,7 @@ public int CharValue this.charValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool CharValueSpecified @@ -190,7 +190,7 @@ public bool CharValueSpecified this.charValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=4)] public System.DateTime DateTimeValue @@ -204,7 +204,7 @@ public System.DateTime DateTimeValue this.dateTimeValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DateTimeValueSpecified @@ -218,7 +218,7 @@ public bool DateTimeValueSpecified this.dateTimeValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=5)] public DayOfWeek DayOfWeekValue @@ -232,7 +232,7 @@ public DayOfWeek DayOfWeekValue this.dayOfWeekValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DayOfWeekValueSpecified @@ -246,7 +246,7 @@ public bool DayOfWeekValueSpecified this.dayOfWeekValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=6)] public double DoubleValue @@ -260,7 +260,7 @@ public double DoubleValue this.doubleValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool DoubleValueSpecified @@ -274,7 +274,7 @@ public bool DoubleValueSpecified this.doubleValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=7)] public float FloatValue @@ -288,7 +288,7 @@ public float FloatValue this.floatValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool FloatValueSpecified @@ -302,7 +302,7 @@ public bool FloatValueSpecified this.floatValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=8)] public string GuidValue @@ -316,7 +316,7 @@ public string GuidValue this.guidValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=9)] public int IntValue @@ -330,7 +330,7 @@ public int IntValue this.intValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool IntValueSpecified @@ -344,7 +344,7 @@ public bool IntValueSpecified this.intValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=10)] public long LongValue @@ -358,7 +358,7 @@ public long LongValue this.longValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool LongValueSpecified @@ -372,7 +372,7 @@ public bool LongValueSpecified this.longValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=11)] public string LongerStringValue @@ -386,7 +386,7 @@ public string LongerStringValue this.longerStringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=12)] public sbyte SbyteValue @@ -400,7 +400,7 @@ public sbyte SbyteValue this.sbyteValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SbyteValueSpecified @@ -414,7 +414,7 @@ public bool SbyteValueSpecified this.sbyteValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=13)] public short ShortValue @@ -428,7 +428,7 @@ public short ShortValue this.shortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ShortValueSpecified @@ -442,7 +442,7 @@ public bool ShortValueSpecified this.shortValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=14)] public string StringValue @@ -456,7 +456,7 @@ public string StringValue this.stringValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(DataType="duration", Order=15)] public string TimeSpanValue @@ -470,7 +470,7 @@ public string TimeSpanValue this.timeSpanValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=16)] public uint UintValue @@ -484,7 +484,7 @@ public uint UintValue this.uintValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UintValueSpecified @@ -498,7 +498,7 @@ public bool UintValueSpecified this.uintValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=17)] public ulong UlongValue @@ -512,7 +512,7 @@ public ulong UlongValue this.ulongValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UlongValueSpecified @@ -526,7 +526,7 @@ public bool UlongValueSpecified this.ulongValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=18)] public ushort UshortValue @@ -540,7 +540,7 @@ public ushort UshortValue this.ushortValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool UshortValueSpecified @@ -555,501 +555,501 @@ public bool UshortValueSpecified } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System")] public enum DayOfWeek { - + /// Sunday, - + /// Monday, - + /// Tuesday, - + /// Wednesday, - + /// Thursday, - + /// Friday, - + /// Saturday, } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="HttpsTransSecMessCredsUserName_NS.IWcfService")] public interface IWcfService { - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoWithTimeout", ReplyAction="http://tempuri.org/IWcfService/EchoWithTimeoutResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoWithTimeoutAsync(HttpsTransSecMessCredsUserName_NS.EchoWithTimeoutRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/Echo", ReplyAction="http://tempuri.org/IWcfService/EchoResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoAsync(HttpsTransSecMessCredsUserName_NS.EchoRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoComplex", ReplyAction="http://tempuri.org/IWcfService/EchoComplexResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoComplexAsync(HttpsTransSecMessCredsUserName_NS.EchoComplexRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFault", ReplyAction="http://tempuri.org/IWcfService/TestFaultResponse")] [System.ServiceModel.FaultContractAttribute(typeof(HttpsTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultAsync(HttpsTransSecMessCredsUserName_NS.TestFaultRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultInt", ReplyAction="http://tempuri.org/IWcfService/TestFaultIntResponse")] [System.ServiceModel.FaultContractAttribute(typeof(int), Action="http://tempuri.org/IWcfService/TestFaultIntFault", Name="IntFault", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultIntAsync(int faultCode); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaults", ReplyAction="http://tempuri.org/IWcfService/TestFaultsResponse")] [System.ServiceModel.FaultContractAttribute(typeof(HttpsTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.FaultContractAttribute(typeof(HttpsTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault2", Name="FaultDetail2", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultsAsync(HttpsTransSecMessCredsUserName_NS.TestFaultsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/TestFaultWithKnownType", ReplyAction="http://tempuri.org/IWcfService/TestFaultWithKnownTypeResponse")] [System.ServiceModel.FaultContractAttribute(typeof(HttpsTransSecMessCredsUserName_NS.FaultDetail), Action="http://tempuri.org/IWcfService/TestFaultFaultDetailFault", Name="FaultDetail", Namespace="http://www.contoso.com/wcfnamespace")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(HttpsTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ThrowInvalidOperationException", ReplyAction="http://tempuri.org/IWcfService/ThrowInvalidOperationExceptionResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(HttpsTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingDataContract", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingDataContractResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingDataContractAsync(HttpsTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ValidateMessagePropertyHeaders", ReplyAction="http://tempuri.org/IWcfService/ValidateMessagePropertyHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync(HttpsTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/UserGetAuthToken", ReplyAction="http://tempuri.org/IWcfService/UserGetAuthTokenResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task UserGetAuthTokenAsync(HttpsTransSecMessCredsUserName_NS.UserGetAuthTokenRequest request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReply", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyAsync(HttpsTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrapped", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyNotWrappedResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(HttpsTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeader", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderRespon" + "se")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(HttpsTransSecMessCredsUserName_NS.RequestBankingData request); - + // CODEGEN: Generating message contract since the operation has multiple return values. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstood", ReplyAction="http://tempuri.org/IWcfService/MessageContractRequestReplyWithMessageHeaderNotNec" + "essaryUnderstoodResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(HttpsTransSecMessCredsUserName_NS.RequestBankingData request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoHttpMessageProperty", ReplyAction="http://tempuri.org/IWcfService/EchoHttpRequestMessagePropertyResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync(HttpsTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRestartServiceEndpoint", ReplyAction="http://tempuri.org/IWcfService/GetRestartServiceEndpointResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRestartServiceEndpointAsync(HttpsTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormat", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaults", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatSupportFaultsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpc", ReplyAction="http://tempuri.org/IWcfService/EchoXmlSerializerFormatUsingRpcResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true)] System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetDataUsingXmlSerializer", ReplyAction="http://tempuri.org/IWcfService/GetDataUsingXmlSerializerResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(HttpsTransSecMessCredsUserName_NS.XmlCompositeType composite); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/MtcRequest/loginRequest", ReplyAction="http://www.contoso.com/MtcRequest/loginResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task LoginAsync(HttpsTransSecMessCredsUserName_NS.LoginRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessage", ReplyAction="http://tempuri.org/IWcfService/GetIncomingMessageHeadersMessageResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStreamFromString", ReplyAction="http://tempuri.org/IWcfService/GetStreamFromStringResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStreamFromStringAsync(HttpsTransSecMessCredsUserName_NS.GetStreamFromStringRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetStringFromStream", ReplyAction="http://tempuri.org/IWcfService/GetStringFromStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetStringFromStreamAsync(HttpsTransSecMessCredsUserName_NS.GetStringFromStreamRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoStream", ReplyAction="http://tempuri.org/IWcfService/EchoStreamResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoMessageParameter", ReplyAction="http://tempuri.org/IWcfService/EchoMessageParameterResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageParameterAsync(HttpsTransSecMessCredsUserName_NS.EchoMessageParameterRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItems", ReplyAction="http://tempuri.org/IWcfService/EchoItemsResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItemsAsync(HttpsTransSecMessCredsUserName_NS.EchoItemsRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml", ReplyAction="http://tempuri.org/IWcfService/EchoItems_XmlResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoItemsXml1", ReplyAction="http://tempuri.org/IWcfService/EchoItems_Xml1Response")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/EchoXmlVeryComplexType", ReplyAction="http://tempuri.org/IWcfService/EchoXmlVeryComplexTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(HttpsTransSecMessCredsUserName_NS.XmlVeryComplexType complex); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/ReturnContentType", ReplyAction="http://tempuri.org/IWcfService/ReturnContentTypeResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task ReturnContentTypeAsync(HttpsTransSecMessCredsUserName_NS.ReturnContentTypeRequest request); - + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResponseWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + - "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageResquestWithMess" + + + [System.ServiceModel.OperationContractAttribute(Action="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + + "ageHeader", ReplyAction="http://www.contoso.com/IXmlMessageContarctTestService/EchoMessageRequestWithMess" + "ageHeaderResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request); - + System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request); + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabled", ReplyAction="http://tempuri.org/IWcfService/IsHttpKeepAliveDisabledResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync(); - + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IWcfService/GetRequestHttpHeaders", ReplyAction="http://tempuri.org/IWcfService/GetRequestHttpHeadersResponse")] [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] System.Threading.Tasks.Task GetRequestHttpHeadersAsync(HttpsTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest request); } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeout", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(DataType="duration")] public string serviceOperationTimeout; - + public EchoWithTimeoutRequest() { } - + public EchoWithTimeoutRequest(string message, string serviceOperationTimeout) { this.message = message; this.serviceOperationTimeout = serviceOperationTimeout; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoWithTimeoutResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoWithTimeoutResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoWithTimeoutResult; - + public EchoWithTimeoutResponse() { } - + public EchoWithTimeoutResponse(string EchoWithTimeoutResult) { this.EchoWithTimeoutResult = EchoWithTimeoutResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="Echo", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public EchoRequest() { } - + public EchoRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string EchoResult; - + public EchoResponse() { } - + public EchoResponse(string EchoResult) { this.EchoResult = EchoResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplex", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public HttpsTransSecMessCredsUserName_NS.ComplexCompositeType message; - + public EchoComplexRequest() { } - + public EchoComplexRequest(HttpsTransSecMessCredsUserName_NS.ComplexCompositeType message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoComplexResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoComplexResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public HttpsTransSecMessCredsUserName_NS.ComplexCompositeType EchoComplexResult; - + public EchoComplexResponse() { } - + public EchoComplexResponse(HttpsTransSecMessCredsUserName_NS.ComplexCompositeType EchoComplexResult) { this.EchoComplexResult = EchoComplexResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFault", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + public TestFaultRequest() { } - + public TestFaultRequest(string faultMsg) { this.faultMsg = faultMsg; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultResponse { - + public TestFaultResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaults", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public bool throwFaultDetail; - + public TestFaultsRequest() { } - + public TestFaultsRequest(string faultMsg, bool throwFaultDetail) { this.faultMsg = faultMsg; this.throwFaultDetail = throwFaultDetail; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultsResponse { - + public TestFaultsResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string faultMsg; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public TestFaultWithKnownTypeRequest() { } - + public TestFaultWithKnownTypeRequest(string faultMsg, object[] objects) { this.faultMsg = faultMsg; this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="TestFaultWithKnownTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class TestFaultWithKnownTypeResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] TestFaultWithKnownTypeResult; - + public TestFaultWithKnownTypeResponse() { } - + public TestFaultWithKnownTypeResponse(object[] TestFaultWithKnownTypeResult) { this.TestFaultWithKnownTypeResult = TestFaultWithKnownTypeResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationException", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string message; - + public ThrowInvalidOperationExceptionRequest() { } - + public ThrowInvalidOperationExceptionRequest(string message) { this.message = message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ThrowInvalidOperationExceptionResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ThrowInvalidOperationExceptionResponse { - + public ThrowInvalidOperationExceptionResponse() { } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class CompositeType { - + private bool boolValueField; - + private bool boolValueFieldSpecified; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1063,7 +1063,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool BoolValueSpecified @@ -1077,7 +1077,7 @@ public bool BoolValueSpecified this.boolValueFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string StringValue @@ -1092,60 +1092,60 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContract", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public HttpsTransSecMessCredsUserName_NS.CompositeType composite; - + public GetDataUsingDataContractRequest() { } - + public GetDataUsingDataContractRequest(HttpsTransSecMessCredsUserName_NS.CompositeType composite) { this.composite = composite; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetDataUsingDataContractResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetDataUsingDataContractResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public HttpsTransSecMessCredsUserName_NS.CompositeType GetDataUsingDataContractResult; - + public GetDataUsingDataContractResponse() { } - + public GetDataUsingDataContractResponse(HttpsTransSecMessCredsUserName_NS.CompositeType GetDataUsingDataContractResult) { this.GetDataUsingDataContractResult = GetDataUsingDataContractResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public partial class ArrayOfKeyValueOfstringstringKeyValueOfstringstring { - + private string keyField; - + private string valueField; - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=0)] public string Key @@ -1159,7 +1159,7 @@ public string Key this.keyField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Value @@ -1174,60 +1174,60 @@ public string Value } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersRequest { - + public ValidateMessagePropertyHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ValidateMessagePropertyHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ValidateMessagePropertyHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public HttpsTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult; - + public ValidateMessagePropertyHeadersResponse() { } - + public ValidateMessagePropertyHeadersResponse(HttpsTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] ValidateMessagePropertyHeadersResult) { this.ValidateMessagePropertyHeadersResult = ValidateMessagePropertyHeadersResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class ResultOfstring { - + private int errorCodeField; - + private bool errorCodeFieldSpecified; - + private HttpStatusCode httpStatusCodeField; - + private bool httpStatusCodeFieldSpecified; - + private string resultField; - + private string resultMessageField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public int ErrorCode @@ -1241,7 +1241,7 @@ public int ErrorCode this.errorCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool ErrorCodeSpecified @@ -1255,7 +1255,7 @@ public bool ErrorCodeSpecified this.errorCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public HttpStatusCode HttpStatusCode @@ -1269,7 +1269,7 @@ public HttpStatusCode HttpStatusCode this.httpStatusCodeField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool HttpStatusCodeSpecified @@ -1283,7 +1283,7 @@ public bool HttpStatusCodeSpecified this.httpStatusCodeFieldSpecified = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string Result @@ -1297,7 +1297,7 @@ public string Result this.resultField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=3)] public string ResultMessage @@ -1312,210 +1312,210 @@ public string ResultMessage } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.datacontract.org/2004/07/System.Net")] public enum HttpStatusCode { - + /// Continue, - + /// SwitchingProtocols, - + /// OK, - + /// Created, - + /// Accepted, - + /// NonAuthoritativeInformation, - + /// NoContent, - + /// ResetContent, - + /// PartialContent, - + /// MultipleChoices, - + /// Ambiguous, - + /// MovedPermanently, - + /// Moved, - + /// Found, - + /// Redirect, - + /// SeeOther, - + /// RedirectMethod, - + /// NotModified, - + /// UseProxy, - + /// Unused, - + /// TemporaryRedirect, - + /// RedirectKeepVerb, - + /// BadRequest, - + /// Unauthorized, - + /// PaymentRequired, - + /// Forbidden, - + /// NotFound, - + /// MethodNotAllowed, - + /// NotAcceptable, - + /// ProxyAuthenticationRequired, - + /// RequestTimeout, - + /// Conflict, - + /// Gone, - + /// LengthRequired, - + /// PreconditionFailed, - + /// RequestEntityTooLarge, - + /// RequestUriTooLong, - + /// UnsupportedMediaType, - + /// RequestedRangeNotSatisfiable, - + /// ExpectationFailed, - + /// UpgradeRequired, - + /// InternalServerError, - + /// NotImplemented, - + /// BadGateway, - + /// ServiceUnavailable, - + /// GatewayTimeout, - + /// HttpVersionNotSupported, } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthToken", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenRequest { - + public UserGetAuthTokenRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="UserGetAuthTokenResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class UserGetAuthTokenResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public HttpsTransSecMessCredsUserName_NS.ResultOfstring UserGetAuthTokenResult; - + public UserGetAuthTokenResponse() { } - + public UserGetAuthTokenResponse(HttpsTransSecMessCredsUserName_NS.ResultOfstring UserGetAuthTokenResult) { this.UserGetAuthTokenResult = UserGetAuthTokenResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="RequestBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class RequestBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="CustomNamespace", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Namespace="CustomNamespace", IsNullable=true)] public string Customer_Name; - + public RequestBankingData() { } - + public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1523,29 +1523,29 @@ public RequestBankingData(System.DateTime Date_of_Request, int Transaction_Amoun this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingData { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingData() { } - + public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1553,27 +1553,27 @@ public ReplyBankingData(System.DateTime Date_of_Request, int Transaction_Amount, this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] public partial class ReplyBankingDataNotWrapped { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataNotWrapped() { } - + public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.Date_of_Request = Date_of_Request; @@ -1581,33 +1581,33 @@ public ReplyBankingDataNotWrapped(System.DateTime Date_of_Request, int Transacti this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderExtraValues; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeader() { } - + public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeaderExtraValues, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderExtraValues = ReplyBankingDataWithMessageHeaderExtraValues; @@ -1616,33 +1616,33 @@ public ReplyBankingDataWithMessageHeader(string ReplyBankingDataWithMessageHeade this.Customer_Name = Customer_Name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ServiceModel.MessageContractAttribute(WrapperName="ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodWrapper", WrapperNamespace="http://www.contoso.com", IsWrapped=true)] public partial class ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public System.DateTime Date_of_Request; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Namespace="http://tempuri.org/")] public int Transaction_Amount; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com", Order=2)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string Customer_Name; - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood() { } - + public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue, System.DateTime Date_of_Request, int Transaction_Amount, string Customer_Name) { this.ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue = ReplyBankingDataWithMessageHeaderNotNecessaryUnderstoodExtraValue; @@ -1651,24 +1651,24 @@ public ReplyBankingDataWithMessageHeaderNotNecessaryUnderstood(string ReplyBanki this.Customer_Name = Customer_Name; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.contoso.com/wcfnamespace")] public partial class TestHttpRequestMessageProperty { - + private ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] headersField; - + private string methodField; - + private string queryStringField; - + private bool suppressEntityBodyField; - + private bool suppressEntityBodyFieldSpecified; - + /// [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true, Order=0)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] @@ -1683,7 +1683,7 @@ public ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] Headers this.headersField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=1)] public string Method @@ -1697,7 +1697,7 @@ public string Method this.methodField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(IsNullable=true, Order=2)] public string QueryString @@ -1711,7 +1711,7 @@ public string QueryString this.queryStringField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=3)] public bool SuppressEntityBody @@ -1725,7 +1725,7 @@ public bool SuppressEntityBody this.suppressEntityBodyField = value; } } - + /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool SuppressEntityBodySpecified @@ -1740,84 +1740,84 @@ public bool SuppressEntityBodySpecified } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessageProperty", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyRequest { - + public EchoHttpRequestMessagePropertyRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoHttpRequestMessagePropertyResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoHttpRequestMessagePropertyResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public HttpsTransSecMessCredsUserName_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult; - + public EchoHttpRequestMessagePropertyResponse() { } - + public EchoHttpRequestMessagePropertyResponse(HttpsTransSecMessCredsUserName_NS.TestHttpRequestMessageProperty EchoHttpRequestMessagePropertyResult) { this.EchoHttpRequestMessagePropertyResult = EchoHttpRequestMessagePropertyResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpoint", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointRequest { - + public GetRestartServiceEndpointRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRestartServiceEndpointResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRestartServiceEndpointResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetRestartServiceEndpointResult; - + public GetRestartServiceEndpointResponse() { } - + public GetRestartServiceEndpointResponse(string GetRestartServiceEndpointResult) { this.GetRestartServiceEndpointResult = GetRestartServiceEndpointResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlCompositeType { - + private bool boolValueField; - + private string stringValueField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public bool BoolValue @@ -1831,7 +1831,7 @@ public bool BoolValue this.boolValueField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public string StringValue @@ -1846,30 +1846,30 @@ public string StringValue } } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="login", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string clientId; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=1)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string user; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=2)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string pwd; - + public LoginRequest() { } - + public LoginRequest(string clientId, string user, string pwd) { this.clientId = clientId; @@ -1877,207 +1877,207 @@ public LoginRequest(string clientId, string user, string pwd) this.pwd = pwd; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="loginResponse", WrapperNamespace="http://www.contoso.com/", IsWrapped=true)] public partial class LoginResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] public string @return; - + public LoginResponse() { } - + public LoginResponse(string @return) { this.@return = @return; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromString", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string data; - + public GetStreamFromStringRequest() { } - + public GetStreamFromStringRequest(string data) { this.data = data; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStreamFromStringResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStreamFromStringResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream GetStreamFromStringResult; - + public GetStreamFromStringResponse() { } - + public GetStreamFromStringResponse(System.IO.Stream GetStreamFromStringResult) { this.GetStreamFromStringResult = GetStreamFromStringResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStream", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] public System.IO.Stream stream; - + public GetStringFromStreamRequest() { } - + public GetStringFromStreamRequest(System.IO.Stream stream) { this.stream = stream; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetStringFromStreamResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetStringFromStreamResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string GetStringFromStreamResult; - + public GetStringFromStreamResponse() { } - + public GetStringFromStreamResponse(string GetStringFromStreamResult) { this.GetStringFromStreamResult = GetStringFromStreamResult; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameter", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string name; - + public EchoMessageParameterRequest() { } - + public EchoMessageParameterRequest(string name) { this.name = name; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoMessageParameterResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoMessageParameterResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string result; - + public EchoMessageParameterResponse() { } - + public EchoMessageParameterResponse(string result) { this.result = result; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItems", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] objects; - + public EchoItemsRequest() { } - + public EchoItemsRequest(object[] objects) { this.objects = objects; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="EchoItemsResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class EchoItemsResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute(Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays")] public object[] EchoItemsResult; - + public EchoItemsResponse() { } - + public EchoItemsResponse(object[] EchoItemsResult) { this.EchoItemsResult = EchoItemsResult; } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")] public partial class XmlVeryComplexType { - + private NonInstantiatedType nonInstantiatedFieldField; - + private int idField; - + /// [System.Xml.Serialization.XmlElementAttribute(Order=0)] public NonInstantiatedType NonInstantiatedField @@ -2091,7 +2091,7 @@ public NonInstantiatedType NonInstantiatedField this.nonInstantiatedFieldField = value; } } - + /// [System.Xml.Serialization.XmlElementAttribute(Order=1)] public int Id @@ -2106,7 +2106,7 @@ public int Id } } } - + /// [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.Diagnostics.DebuggerStepThroughAttribute()] @@ -2114,187 +2114,187 @@ public int Id public partial class NonInstantiatedType { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentType", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] public string contentType; - + public ReturnContentTypeRequest() { } - + public ReturnContentTypeRequest(string contentType) { this.contentType = contentType; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="ReturnContentTypeResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class ReturnContentTypeResponse { - + public ReturnContentTypeResponse() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequest", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequest { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string Message; - + public XmlMessageContractTestRequest() { } - + public XmlMessageContractTestRequest(string Message) { this.Message = Message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestResponse", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestResponse { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string OutOfBandData; - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.contoso.com/XmlMessageContarctTestMessages", Order=0)] public string _message; - + public XmlMessageContractTestResponse() { } - + public XmlMessageContractTestResponse(string OutOfBandData, string _message) { this.OutOfBandData = OutOfBandData; this._message = _message; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="XmlMessageContractTestRequestWithMessageHeader", WrapperNamespace="http://www.contoso.com/XmlMessageContarctTestMessages", IsWrapped=true)] public partial class XmlMessageContractTestRequestWithMessageHeader { - + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://www.contoso.com")] public string XmlMessageContractTestRequestWithMessageHeaderMessage; - + public XmlMessageContractTestRequestWithMessageHeader() { } - + public XmlMessageContractTestRequestWithMessageHeader(string XmlMessageContractTestRequestWithMessageHeaderMessage) { this.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeaders", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersRequest { - + public GetRequestHttpHeadersRequest() { } } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] [System.ServiceModel.MessageContractAttribute(WrapperName="GetRequestHttpHeadersResponse", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] public partial class GetRequestHttpHeadersResponse { - + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://tempuri.org/", Order=0)] [System.Xml.Serialization.XmlArrayAttribute(IsNullable=true)] [System.Xml.Serialization.XmlArrayItemAttribute("KeyValueOfstringstring", Namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays", IsNullable=false)] public HttpsTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult; - + public GetRequestHttpHeadersResponse() { } - + public GetRequestHttpHeadersResponse(HttpsTransSecMessCredsUserName_NS.ArrayOfKeyValueOfstringstringKeyValueOfstringstring[] GetRequestHttpHeadersResult) { this.GetRequestHttpHeadersResult = GetRequestHttpHeadersResult; } } - + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public interface IWcfServiceChannel : HttpsTransSecMessCredsUserName_NS.IWcfService, System.ServiceModel.IClientChannel { } - + [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "99.99.99")] public partial class WcfServiceClient : System.ServiceModel.ClientBase, HttpsTransSecMessCredsUserName_NS.IWcfService { - + /// /// Implement this partial method to configure the service endpoint. /// /// The endpoint to configure /// The client credentials static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); - - public WcfServiceClient(EndpointConfiguration endpointConfiguration) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), WcfServiceClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(WcfServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); } - - public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + + public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoWithTimeoutAsync(HttpsTransSecMessCredsUserName_NS.EchoWithTimeoutRequest request) { return base.Channel.EchoWithTimeoutAsync(request); } - + public System.Threading.Tasks.Task EchoWithTimeoutAsync(string message, string serviceOperationTimeout) { HttpsTransSecMessCredsUserName_NS.EchoWithTimeoutRequest inValue = new HttpsTransSecMessCredsUserName_NS.EchoWithTimeoutRequest(); @@ -2302,62 +2302,62 @@ public WcfServiceClient(System.ServiceModel.Channels.Binding binding, System.Ser inValue.serviceOperationTimeout = serviceOperationTimeout; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoWithTimeoutAsync(inValue); } - + public System.Threading.Tasks.Task MessageRequestReplyAsync(System.ServiceModel.Channels.Message request) { return base.Channel.MessageRequestReplyAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoAsync(HttpsTransSecMessCredsUserName_NS.EchoRequest request) { return base.Channel.EchoAsync(request); } - + public System.Threading.Tasks.Task EchoAsync(string message) { HttpsTransSecMessCredsUserName_NS.EchoRequest inValue = new HttpsTransSecMessCredsUserName_NS.EchoRequest(); inValue.message = message; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoComplexAsync(HttpsTransSecMessCredsUserName_NS.EchoComplexRequest request) { return base.Channel.EchoComplexAsync(request); } - + public System.Threading.Tasks.Task EchoComplexAsync(HttpsTransSecMessCredsUserName_NS.ComplexCompositeType message) { HttpsTransSecMessCredsUserName_NS.EchoComplexRequest inValue = new HttpsTransSecMessCredsUserName_NS.EchoComplexRequest(); inValue.message = message; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoComplexAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.TestFaultAsync(HttpsTransSecMessCredsUserName_NS.TestFaultRequest request) { return base.Channel.TestFaultAsync(request); } - + public System.Threading.Tasks.Task TestFaultAsync(string faultMsg) { HttpsTransSecMessCredsUserName_NS.TestFaultRequest inValue = new HttpsTransSecMessCredsUserName_NS.TestFaultRequest(); inValue.faultMsg = faultMsg; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultAsync(inValue); } - + public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) { return base.Channel.TestFaultIntAsync(faultCode); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.TestFaultsAsync(HttpsTransSecMessCredsUserName_NS.TestFaultsRequest request) { return base.Channel.TestFaultsAsync(request); } - + public System.Threading.Tasks.Task TestFaultsAsync(string faultMsg, bool throwFaultDetail) { HttpsTransSecMessCredsUserName_NS.TestFaultsRequest inValue = new HttpsTransSecMessCredsUserName_NS.TestFaultsRequest(); @@ -2365,13 +2365,13 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.throwFaultDetail = throwFaultDetail; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultsAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.TestFaultWithKnownTypeAsync(HttpsTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest request) { return base.Channel.TestFaultWithKnownTypeAsync(request); } - + public System.Threading.Tasks.Task TestFaultWithKnownTypeAsync(string faultMsg, object[] objects) { HttpsTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest inValue = new HttpsTransSecMessCredsUserName_NS.TestFaultWithKnownTypeRequest(); @@ -2379,127 +2379,127 @@ public System.Threading.Tasks.Task TestFaultIntAsync(int faultCode) inValue.objects = objects; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).TestFaultWithKnownTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.ThrowInvalidOperationExceptionAsync(HttpsTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest request) { return base.Channel.ThrowInvalidOperationExceptionAsync(request); } - + public System.Threading.Tasks.Task ThrowInvalidOperationExceptionAsync(string message) { HttpsTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest inValue = new HttpsTransSecMessCredsUserName_NS.ThrowInvalidOperationExceptionRequest(); inValue.message = message; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).ThrowInvalidOperationExceptionAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.GetDataUsingDataContractAsync(HttpsTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest request) { return base.Channel.GetDataUsingDataContractAsync(request); } - + public System.Threading.Tasks.Task GetDataUsingDataContractAsync(HttpsTransSecMessCredsUserName_NS.CompositeType composite) { HttpsTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest inValue = new HttpsTransSecMessCredsUserName_NS.GetDataUsingDataContractRequest(); inValue.composite = composite; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetDataUsingDataContractAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.ValidateMessagePropertyHeadersAsync(HttpsTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest request) { return base.Channel.ValidateMessagePropertyHeadersAsync(request); } - + public System.Threading.Tasks.Task ValidateMessagePropertyHeadersAsync() { HttpsTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest inValue = new HttpsTransSecMessCredsUserName_NS.ValidateMessagePropertyHeadersRequest(); return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).ValidateMessagePropertyHeadersAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.UserGetAuthTokenAsync(HttpsTransSecMessCredsUserName_NS.UserGetAuthTokenRequest request) { return base.Channel.UserGetAuthTokenAsync(request); } - + public System.Threading.Tasks.Task UserGetAuthTokenAsync() { HttpsTransSecMessCredsUserName_NS.UserGetAuthTokenRequest inValue = new HttpsTransSecMessCredsUserName_NS.UserGetAuthTokenRequest(); return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).UserGetAuthTokenAsync(inValue); } - + public System.Threading.Tasks.Task MessageContractRequestReplyAsync(HttpsTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyNotWrappedAsync(HttpsTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyNotWrappedAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderAsync(HttpsTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(HttpsTransSecMessCredsUserName_NS.RequestBankingData request) { return base.Channel.MessageContractRequestReplyWithMessageHeaderNotNecessaryUnderstoodAsync(request); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoHttpRequestMessagePropertyAsync(HttpsTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest request) { return base.Channel.EchoHttpRequestMessagePropertyAsync(request); } - + public System.Threading.Tasks.Task EchoHttpRequestMessagePropertyAsync() { HttpsTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest inValue = new HttpsTransSecMessCredsUserName_NS.EchoHttpRequestMessagePropertyRequest(); return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoHttpRequestMessagePropertyAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.GetRestartServiceEndpointAsync(HttpsTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest request) { return base.Channel.GetRestartServiceEndpointAsync(request); } - + public System.Threading.Tasks.Task GetRestartServiceEndpointAsync() { HttpsTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest inValue = new HttpsTransSecMessCredsUserName_NS.GetRestartServiceEndpointRequest(); return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetRestartServiceEndpointAsync(inValue); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatAsync(string message) { return base.Channel.EchoXmlSerializerFormatAsync(message); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatSupportFaultsAsync(string message, bool pleaseThrowException) { return base.Channel.EchoXmlSerializerFormatSupportFaultsAsync(message, pleaseThrowException); } - + public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync(string message) { return base.Channel.EchoXmlSerializerFormatUsingRpcAsync(message); } - + public System.Threading.Tasks.Task GetDataUsingXmlSerializerAsync(HttpsTransSecMessCredsUserName_NS.XmlCompositeType composite) { return base.Channel.GetDataUsingXmlSerializerAsync(composite); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.LoginAsync(HttpsTransSecMessCredsUserName_NS.LoginRequest request) { return base.Channel.LoginAsync(request); } - + public System.Threading.Tasks.Task LoginAsync(string clientId, string user, string pwd) { HttpsTransSecMessCredsUserName_NS.LoginRequest inValue = new HttpsTransSecMessCredsUserName_NS.LoginRequest(); @@ -2508,145 +2508,145 @@ public System.Threading.Tasks.Task EchoXmlSerializerFormatUsingRpcAsync( inValue.pwd = pwd; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).LoginAsync(inValue); } - + public System.Threading.Tasks.Task GetIncomingMessageHeadersMessageAsync(string customHeaderName, string customHeaderNS) { return base.Channel.GetIncomingMessageHeadersMessageAsync(customHeaderName, customHeaderNS); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.GetStreamFromStringAsync(HttpsTransSecMessCredsUserName_NS.GetStreamFromStringRequest request) { return base.Channel.GetStreamFromStringAsync(request); } - + public System.Threading.Tasks.Task GetStreamFromStringAsync(string data) { HttpsTransSecMessCredsUserName_NS.GetStreamFromStringRequest inValue = new HttpsTransSecMessCredsUserName_NS.GetStreamFromStringRequest(); inValue.data = data; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetStreamFromStringAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.GetStringFromStreamAsync(HttpsTransSecMessCredsUserName_NS.GetStringFromStreamRequest request) { return base.Channel.GetStringFromStreamAsync(request); } - + public System.Threading.Tasks.Task GetStringFromStreamAsync(System.IO.Stream stream) { HttpsTransSecMessCredsUserName_NS.GetStringFromStreamRequest inValue = new HttpsTransSecMessCredsUserName_NS.GetStringFromStreamRequest(); inValue.stream = stream; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetStringFromStreamAsync(inValue); } - + public System.Threading.Tasks.Task EchoStreamAsync(System.IO.Stream stream) { return base.Channel.EchoStreamAsync(stream); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoMessageParameterAsync(HttpsTransSecMessCredsUserName_NS.EchoMessageParameterRequest request) { return base.Channel.EchoMessageParameterAsync(request); } - + public System.Threading.Tasks.Task EchoMessageParameterAsync(string name) { HttpsTransSecMessCredsUserName_NS.EchoMessageParameterRequest inValue = new HttpsTransSecMessCredsUserName_NS.EchoMessageParameterRequest(); inValue.name = name; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageParameterAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoItemsAsync(HttpsTransSecMessCredsUserName_NS.EchoItemsRequest request) { return base.Channel.EchoItemsAsync(request); } - + public System.Threading.Tasks.Task EchoItemsAsync(object[] objects) { HttpsTransSecMessCredsUserName_NS.EchoItemsRequest inValue = new HttpsTransSecMessCredsUserName_NS.EchoItemsRequest(); inValue.objects = objects; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoItemsAsync(inValue); } - + public System.Threading.Tasks.Task EchoItems_XmlAsync(object[] objects) { return base.Channel.EchoItems_XmlAsync(objects); } - + public System.Threading.Tasks.Task EchoItems_Xml1Async(object[] objects) { return base.Channel.EchoItems_Xml1Async(objects); } - + public System.Threading.Tasks.Task EchoXmlVeryComplexTypeAsync(HttpsTransSecMessCredsUserName_NS.XmlVeryComplexType complex) { return base.Channel.EchoXmlVeryComplexTypeAsync(complex); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.ReturnContentTypeAsync(HttpsTransSecMessCredsUserName_NS.ReturnContentTypeRequest request) { return base.Channel.ReturnContentTypeAsync(request); } - + public System.Threading.Tasks.Task ReturnContentTypeAsync(string contentType) { HttpsTransSecMessCredsUserName_NS.ReturnContentTypeRequest inValue = new HttpsTransSecMessCredsUserName_NS.ReturnContentTypeRequest(); inValue.contentType = contentType; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).ReturnContentTypeAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoMessageResponseWithMessageHeaderAsync(HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequest request) { return base.Channel.EchoMessageResponseWithMessageHeaderAsync(request); } - + public System.Threading.Tasks.Task EchoMessageResponseWithMessageHeaderAsync(string Message) { HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequest inValue = new HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequest(); inValue.Message = Message; return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageResponseWithMessageHeaderAsync(inValue); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoMessageResquestWithMessageHeaderAsync(HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request) + System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.EchoMessageRequestWithMessageHeaderAsync(HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader request) { - return base.Channel.EchoMessageResquestWithMessageHeaderAsync(request); + return base.Channel.EchoMessageRequestWithMessageHeaderAsync(request); } - - public System.Threading.Tasks.Task EchoMessageResquestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) + + public System.Threading.Tasks.Task EchoMessageRequestWithMessageHeaderAsync(string XmlMessageContractTestRequestWithMessageHeaderMessage) { HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader inValue = new HttpsTransSecMessCredsUserName_NS.XmlMessageContractTestRequestWithMessageHeader(); inValue.XmlMessageContractTestRequestWithMessageHeaderMessage = XmlMessageContractTestRequestWithMessageHeaderMessage; - return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageResquestWithMessageHeaderAsync(inValue); + return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).EchoMessageRequestWithMessageHeaderAsync(inValue); } - + public System.Threading.Tasks.Task IsHttpKeepAliveDisabledAsync() { return base.Channel.IsHttpKeepAliveDisabledAsync(); } - + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] System.Threading.Tasks.Task HttpsTransSecMessCredsUserName_NS.IWcfService.GetRequestHttpHeadersAsync(HttpsTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest request) { return base.Channel.GetRequestHttpHeadersAsync(request); } - + public System.Threading.Tasks.Task GetRequestHttpHeadersAsync() { HttpsTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest inValue = new HttpsTransSecMessCredsUserName_NS.GetRequestHttpHeadersRequest(); return ((HttpsTransSecMessCredsUserName_NS.IWcfService)(this)).GetRequestHttpHeadersAsync(inValue); } - + public virtual System.Threading.Tasks.Task OpenAsync() { return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); } - + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.https_message_credentials_username_IWcfService)) @@ -2673,7 +2673,7 @@ private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(Endpoi } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) { if ((endpointConfiguration == EndpointConfiguration.https_message_credentials_username_IWcfService)) @@ -2688,13 +2688,13 @@ private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointCo } throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); } - + public enum EndpointConfiguration { - + https_message_credentials_username_IWcfService, - + https2007_message_credentials_username_IWcfService, } } -} \ No newline at end of file +}