다음을 통해 공유


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

속성 값

전송할 URI 체계를 나타내는 UriSchemeHttp 개체입니다.

예제

다음 예제에서는 바인딩의 체계를 콘솔에 출력합니다.

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

출력은 "바인딩의 체계는 http입니다."입니다.

설명

이 속성은 기본 주소에 대한 바인딩의 유효성을 검사하는 데 사용됩니다.

적용 대상