/// <summary>
        /// Post Http Get with body and return the response port.
        /// </summary>
        public virtual PortSet <HttpResponseType, Fault> HttpGet(dssphttp.HttpGetRequestType body)
        {
            HttpGet op = new HttpGet();

            op.Body = body ?? new dssphttp.HttpGetRequestType();
            this.PostUnknownType(op);
            return(op.ResponsePort);
        }
Exemple #2
0
 /// <summary>
 /// Post HttpGet and return the response port.
 /// </summary>
 /// <param name="body"></param>
 /// <returns></returns>
 public virtual PortSet <Microsoft.Dss.Core.DsspHttp.HttpResponseType, Fault> HttpGet(Microsoft.Dss.Core.DsspHttp.HttpGetRequestType body)
 {
     Microsoft.Dss.Core.DsspHttp.HttpGet op = new Microsoft.Dss.Core.DsspHttp.HttpGet();
     op.Body = body ?? new Microsoft.Dss.Core.DsspHttp.HttpGetRequestType();
     this.Post(op);
     return(op.ResponsePort);
 }