MsmqIntegrationBindingElement.Scheme Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a String that contains the scheme used by the binding element.
public:
 virtual property System::String ^ Scheme { System::String ^ get(); };public override string Scheme { get; }member this.Scheme : stringPublic Overrides ReadOnly Property Scheme As StringProperty Value
The String that contains the scheme used by the binding element.
Examples
MsmqIntegrationBindingElement msmqBindingElement = new MsmqIntegrationBindingElement();
String strScheme = msmqBindingElement.Scheme;
Console.WriteLine("Scheme = " + strScheme);
Remarks
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.