HttpTransportBindingElement.Scheme 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取传输的 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”。
注解
此属性可用于对基址验证绑定。