ServiceEndpoint.Behaviors 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서비스 엔드포인트에 대한 동작을 가져옵니다.
public:
property System::Collections::Generic::KeyedByTypeCollection<System::ServiceModel::Description::IEndpointBehavior ^> ^ Behaviors { System::Collections::Generic::KeyedByTypeCollection<System::ServiceModel::Description::IEndpointBehavior ^> ^ get(); };
public System.Collections.Generic.KeyedByTypeCollection<System.ServiceModel.Description.IEndpointBehavior> Behaviors { get; }
member this.Behaviors : System.Collections.Generic.KeyedByTypeCollection<System.ServiceModel.Description.IEndpointBehavior>
Public ReadOnly Property Behaviors As KeyedByTypeCollection(Of IEndpointBehavior)
속성 값
서비스 엔드포인트에 대해 지정된 동작을 포함하는 KeyedByTypeCollection<TItem> 형식의 IEndpointBehavior입니다.
예제
다음 코드에서는 사용자 지정 엔드포인트 동작을 추가한 다음 해당 동작에 액세스하는 방법을 보여 줍니다.
Uri baseAddress = new Uri("http://localhost:8001/Simple");
ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress);
ServiceEndpoint endpoint = serviceHost.AddServiceEndpoint(
typeof(ICalculator),
new WSHttpBinding(),
"CalculatorServiceObject");
endpoint.Behaviors.Add(new MyEndpointBehavior());
Console.WriteLine("List all behaviors:");
foreach (IEndpointBehavior behavior in endpoint.Behaviors)
{
Console.WriteLine("Behavior: {0}", behavior.ToString());
}
Dim baseAddress As New Uri("http://localhost:8001/Simple")
Dim serviceHost As New ServiceHost(GetType(CalculatorService), baseAddress)
Dim endpoint As ServiceEndpoint = serviceHost.AddServiceEndpoint(GetType(ICalculator), New WSHttpBinding(), "CalculatorServiceObject")
endpoint.Behaviors.Add(New MyEndpointBehavior())
Console.WriteLine("List all behaviors:")
For Each behavior As IEndpointBehavior In endpoint.Behaviors
Console.WriteLine("Behavior: {0}", CType(behavior, Object).ToString())
Next behavior
설명
설명 계층에서 액세스할 수 있는 동작 형식의 범위는 특정 수준으로 한정됩니다. ServiceEndpoint는 IEndpointBehavior에서 액세스할 수 있습니다.
엔드포인트와 연결된 항목에 IContractBehavior 액세스하려면 이 속성을 사용하여 엔드포인트에 대한 연락처를 Contract 가져올 수 있습니다. 그런 다음, Behaviors 속성을 호출하여 엔드포인트와 연결된 개체를 IContractBehavior 가져옵니다KeyedByTypeCollection<TItem>.