■ MessageParameterAttribute 클래스를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
using System.ServiceModel; /// <summary> /// 계약 인터페이스 /// </summary> [ServiceContract] interface IContract { //////////////////////////////////////////////////////////////////////////////////////////////////// Method #region 값 설정하기 - SetValue(ByVal) /// <summary> /// 값 설정하기 /// </summary> /// <param name="ByVal">값</param> [OperationContract] void SetValue([MessageParameter(Name="value")] int ByVal); #endregion } |
※ 과장된 가정이나 ByVal 인수가 VB.NET의 키워드이기 때문에 "value" 별칭을 사용했다.