SendActivity.CustomAddress 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서비스와 통신하는 데 사용되는 사용자 지정 주소를 가져오거나 설정합니다.
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
속성 값
해당 값이 서비스에서 수신 대기하는 주소인 문자열 값입니다.
예제
다음 예제에서는 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;
}
}
}
설명
있는 경우 이 값은 작업의 엔드포인트 주소를 정의하는 데 사용됩니다.