다음을 통해 공유


OperationInfo.ContractName 속성

정의

이 작업을 정의하는 계약의 전체 이름을 가져오거나 설정합니다.

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

속성 값

String

작업을 정의하는 계약의 전체 이름을 나타내는 문자열입니다.

예제

다음 예제에서는 ContractName 속성에 액세스하는 방법을 보여 줍니다.

OperationInfo info = new OperationInfo();
info.ContractName = "Contract1";
Dim info As New OperationInfo()
info.ContractName = "Contract1"

적용 대상