Microsoft.Protocols.TestSuites.Common.Common.CreateGetAttachmentRequest C# (CSharp) Method

CreateGetAttachmentRequest() public static method

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