다음을 통해 공유


WebHttpElement.BehaviorType 속성

정의

이 구성 요소에 의해 사용하도록 설정된 동작의 형식을 가져옵니다.

public:
 virtual property Type ^ BehaviorType { Type ^ get(); };
public override Type BehaviorType { get; }
member this.BehaviorType : Type
Public Overrides ReadOnly Property BehaviorType As Type

속성 값

Type 구성 요소에 의해 사용하도록 설정된 동작의 WebHttpBehavior입니다.

설명

이 샘플에서는 WebHttpElement 형식을 반환합니다.

using System;  
using System.ServiceModel;  
using System.ServiceModel.Web;  
using System.ServiceModel.Configuration;  

    class Program  
    {  
        static void Main(string[] args)  
        {  
            WebHttpElement webHttpElement = new WebHttpElement();  
            Console.WriteLine("The type is: {0}", webHttpElement.BehaviorType);  
            Console.WriteLine("Press <ENTER> to terminate the program.");  
            Console.ReadLine();  
        }  
    }  

적용 대상