78 lines
3.6 KiB
C#
78 lines
3.6 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="Soap12FormatExtensions.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.Services.Description {
|
|
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
using System.Web.Services.Configuration;
|
|
using System.Web.Services.Protocols;
|
|
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12Binding"]/*' />
|
|
[XmlFormatExtension("binding", Soap12Binding.Namespace, typeof(Binding))]
|
|
[XmlFormatExtensionPrefix("soap12", Soap12Binding.Namespace)]
|
|
public sealed class Soap12Binding : SoapBinding {
|
|
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12Binding.Namespace"]/*' />
|
|
public new const string Namespace = "http://schemas.xmlsoap.org/wsdl/soap12/";
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12Binding.HttpTransport"]/*' />
|
|
public new const string HttpTransport = "http://schemas.xmlsoap.org/soap/http";
|
|
}
|
|
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12OperationBinding"]/*' />
|
|
[XmlFormatExtension("operation", Soap12Binding.Namespace, typeof(OperationBinding))]
|
|
public sealed class Soap12OperationBinding : SoapOperationBinding {
|
|
bool soapActionRequired;
|
|
Soap12OperationBinding duplicateBySoapAction;
|
|
Soap12OperationBinding duplicateByRequestElement;
|
|
SoapReflectedMethod method;
|
|
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12OperationBinding.SoapActionRequired"]/*' />
|
|
[XmlAttribute("soapActionRequired"), DefaultValue(false)]
|
|
public bool SoapActionRequired {
|
|
get { return soapActionRequired; }
|
|
set { soapActionRequired = value; }
|
|
}
|
|
|
|
// these are used by Soap12ProtocolReflector in WSDL generation
|
|
internal SoapReflectedMethod Method {
|
|
get { return method; }
|
|
set { method = value; }
|
|
}
|
|
|
|
internal Soap12OperationBinding DuplicateBySoapAction {
|
|
get { return duplicateBySoapAction; }
|
|
set { duplicateBySoapAction = value; }
|
|
}
|
|
|
|
internal Soap12OperationBinding DuplicateByRequestElement {
|
|
get { return duplicateByRequestElement; }
|
|
set { duplicateByRequestElement = value; }
|
|
}
|
|
}
|
|
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12BodyBinding"]/*' />
|
|
[XmlFormatExtension("body", Soap12Binding.Namespace, typeof(InputBinding), typeof(OutputBinding), typeof(MimePart))]
|
|
public sealed class Soap12BodyBinding : SoapBodyBinding {
|
|
}
|
|
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12FaultBinding"]/*' />
|
|
[XmlFormatExtension("fault", Soap12Binding.Namespace, typeof(FaultBinding))]
|
|
public sealed class Soap12FaultBinding : SoapFaultBinding {
|
|
}
|
|
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12HeaderBinding"]/*' />
|
|
[XmlFormatExtension("header", Soap12Binding.Namespace, typeof(InputBinding), typeof(OutputBinding))]
|
|
public sealed class Soap12HeaderBinding : SoapHeaderBinding {
|
|
}
|
|
|
|
/// <include file='doc\Soap12FormatExtensions.uex' path='docs/doc[@for="Soap12AddressBinding"]/*' />
|
|
[XmlFormatExtension("address", Soap12Binding.Namespace, typeof(Port))]
|
|
public sealed class Soap12AddressBinding : SoapAddressBinding {
|
|
}
|
|
}
|