MsmqIntegrationBindingElement.Scheme Property

Definition

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 : string
Public Overrides ReadOnly Property Scheme As String

Property 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.

Applies to