SoapBinding::Namespace Field
.NET Framework (current version)
Gets the URI for the XML namespace of the SoapBinding class. This field is constant.
Assembly: System.Web.Services (in System.Web.Services.dll)
The field value is "http://schemas.xmlsoap.org/wsdl/soap/".
SoapBinding^ mySoapBinding = gcnew SoapBinding; mySoapBinding->Transport = "http://schemas.xmlsoap.org/soap/http"; mySoapBinding->Style = SoapBindingStyle::Document; // Get the URI for XML namespace of the SoapBinding class. String^ myNameSpace = SoapBinding::Namespace; Console::WriteLine( "The URI of the XML Namespace is :{0}", myNameSpace );
.NET Framework
Available since 1.1
Available since 1.1
Show: