Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

MsmqIntegrationBindingElement::Scheme Property

 

Gets a String that contains the scheme used by the binding element.

Namespace:   System.ServiceModel.MsmqIntegration
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property String^ Scheme {
	virtual String^ get() override;
}

Property Value

Type: System::String^

The String that contains the scheme used by the binding element.

This property returns the string "msmq.formatname" to indicate the addressing scheme used by the MSMQ integration channel. For more information about queue addressing, see Service Endpoints and Queue Addressing.

MsmqIntegrationBindingElement msmqBindingElement = new MsmqIntegrationBindingElement();

String strScheme = msmqBindingElement.Scheme;
Console.WriteLine("Scheme = " + strScheme);

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft