HttpTransportBindingElement.Scheme 属性

定义

获取传输的 URI 方案。

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

属性值

一个 UriSchemeHttp 对象,它表示传输的 URI 方案。

示例

下面的示例将绑定方案输出至控制台。

HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();  
Console.WriteLine("The scheme of the binding is {0}.",httpBinding.Scheme);  

输出为:“绑定方案为 http”。

注解

此属性可用于对基址验证绑定。

适用于