Beispiel #1
0
        public WsWsaHeader(String action, String relatesTo, String to, String replyTo, String from, WsXmlNodeList any)
        {
            _action    = action;
            _relatesTo = relatesTo;
            _to        = to;
            if (replyTo != null)
            {
                _replyTo = new WsWsaEndpointRef(new System.Uri(replyTo));
            }

            if (from != null)
            {
                _from = new WsWsaEndpointRef(new System.Uri(from));
            }

            _any   = any;
            _flags = WsMessageFlags.None;
        }
Beispiel #2
0
        public WsWsaHeader(String action, String relatesTo, String to, String replyTo, String from, WsXmlNodeList any)
        {
            _action = action;
            _relatesTo = relatesTo;
            _to = to;
            if (replyTo != null)
            {
                _replyTo = new WsWsaEndpointRef(new System.Uri(replyTo));
            }

            if (from != null)
            {
                _from = new WsWsaEndpointRef(new System.Uri(from));
            }

            _any = any;
            _flags = WsMessageFlags.None;
        }
Beispiel #3
0
 /// <summary>
 /// Creates an instance of the soap header class.
 /// </summary>
 public WsWsaHeader()
 {
     _any = new WsXmlNodeList();
     _flags = WsMessageFlags.None;
 }
Beispiel #4
0
 /// <summary>
 /// Creates an instance of the soap header class.
 /// </summary>
 public WsWsaHeader()
 {
     _any   = new WsXmlNodeList();
     _flags = WsMessageFlags.None;
 }