다음을 통해 공유


SendActivity.CustomAddress 속성

정의

서비스와 통신하는 데 사용되는 사용자 지정 주소를 가져오거나 설정합니다.

public:
 property System::String ^ CustomAddress { System::String ^ get(); void set(System::String ^ value); };
public string CustomAddress { get; set; }
member this.CustomAddress : string with get, set
Public Property CustomAddress As String

속성 값

String

해당 값이 서비스에서 수신 대기하는 주소인 문자열 값입니다.

예제

다음 예제에서는 CustomAddress 속성에 액세스하는 방법을 보여 줍니다. 이 예제는 CalculatorClient SDK 샘플에서 변형되었습니다.

static public void ApplyEndpointAddress(SendActivity activity, EndpointAddress epr)
{
    if (activity.ExecutionStatus == ActivityExecutionStatus.Initialized)
    {
        if (epr.Uri != null)
        {
            activity.CustomAddress = epr.Uri.ToString();
        }
        if (epr.Headers != null && epr.Headers.Count > 0)
        {
            AddressHeader contextHeader = epr.Headers.FindHeader(contextHeaderName, contextHeaderNamespace);
            IDictionary<string, string> context = contextHeader.GetValue<Dictionary<string, string>>();
            activity.Context = context;
        }
    }
}

설명

있는 경우 이 값은 작업의 엔드포인트 주소를 정의하는 데 사용됩니다.

적용 대상