다음을 통해 공유


ServiceEndpoint.Behaviors 속성

정의

서비스 엔드포인트에 대한 동작을 가져옵니다.

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<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

설명

설명 계층에서 액세스할 수 있는 동작 형식의 범위는 특정 수준으로 한정됩니다. ServiceEndpointIEndpointBehavior에서 액세스할 수 있습니다.

엔드포인트와 연결된 항목에 IContractBehavior 액세스하려면 이 속성을 사용하여 엔드포인트에 대한 연락처를 Contract 가져올 수 있습니다. 그런 다음, Behaviors 속성을 호출하여 엔드포인트와 연결된 개체를 IContractBehavior 가져옵니다KeyedByTypeCollection<TItem>.

적용 대상