Microsoft.Protocols.TestSuites.Common.Common.CreateGetAttachmentRequest C# (CSharp) 메소드

CreateGetAttachmentRequest() 공개 정적인 메소드

Create GetAttachmentRequest instance, because there is XML body for the GetAttachment command, then the RequestData always will be null
public static CreateGetAttachmentRequest ( ) : GetAttachmentRequest
리턴 GetAttachmentRequest
        public static GetAttachmentRequest CreateGetAttachmentRequest()
        {
            GetAttachmentRequest request = new GetAttachmentRequest { RequestData = null };
            return request;
        }
Common