Esempio n. 1
0
 public AnonymousToHeader(AddressingVersion version)
     : base(version.AnonymousUri, version)
 {
 }
Esempio n. 2
0
 FaultToHeader(EndpointAddress faultTo, AddressingVersion version)
     : base(version)
 {
     this.faultTo = faultTo;
 }
Esempio n. 3
0
 public static Uri ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion version)
 {
     return(ReadHeaderValue(reader, version, null));
 }
Esempio n. 4
0
 public static UniqueId ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion version)
 {
     Fx.Assert(reader.IsStartElement(XD.AddressingDictionary.MessageId, version.DictionaryNamespace), "");
     return(reader.ReadElementContentAsUniqueId());
 }
Esempio n. 5
0
 private RelatesToHeader(UniqueId messageId, AddressingVersion version)
     : base(version)
 {
     UniqueId = messageId;
 }
Esempio n. 6
0
 private ReplyToHeader(EndpointAddress replyTo, AddressingVersion version)
     : base(version)
 {
     ReplyTo = replyTo;
 }
Esempio n. 7
0
 public FullReplyToHeader(EndpointAddress replyTo, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
     : base(replyTo, version)
 {
     _actor          = actor;
     _mustUnderstand = mustUnderstand;
     _relay          = relay;
 }
Esempio n. 8
0
 public DictionaryActionHeader(XmlDictionaryString dictionaryAction, AddressingVersion version)
     : base(dictionaryAction.Value, version)
 {
     _dictionaryAction = dictionaryAction;
 }
Esempio n. 9
0
 public FullActionHeader(string action, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
     : base(action, version)
 {
     _actor          = actor;
     _mustUnderstand = mustUnderstand;
     _relay          = relay;
 }
Esempio n. 10
0
 MessageIDHeader(UniqueId messageId, AddressingVersion version)
     : base(version)
 {
     this.messageId = messageId;
 }
Esempio n. 11
0
 protected AddressingHeader(AddressingVersion version)
 {
     Version = version;
 }
Esempio n. 12
0
 ReplyToHeader(EndpointAddress replyTo, AddressingVersion version)
     : base(version)
 {
     this.replyTo = replyTo;
 }
Esempio n. 13
0
 ActionHeader(string action, AddressingVersion version)
     : base(version)
 {
     this.action = action;
 }
Esempio n. 14
0
 public FullFaultToHeader(EndpointAddress faultTo, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
     : base(faultTo, version)
 {
     this.actor          = actor;
     this.mustUnderstand = mustUnderstand;
     this.relay          = relay;
 }
Esempio n. 15
0
 public DictionaryToHeader(Uri to, XmlDictionaryString dictionaryTo, AddressingVersion version)
     : base(to, version)
 {
     _dictionaryTo = dictionaryTo;
 }
Esempio n. 16
0
 private FromHeader(EndpointAddress from, AddressingVersion version)
     : base(version)
 {
     From = from;
 }
Esempio n. 17
0
 public FullToHeader(Uri to, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
     : base(to, version)
 {
     _actor          = actor;
     _mustUnderstand = mustUnderstand;
     _relay          = relay;
 }
Esempio n. 18
0
 public FullFromHeader(EndpointAddress from, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
     : base(from, version)
 {
     _actor          = actor;
     _mustUnderstand = mustUnderstand;
     _relay          = relay;
 }
Esempio n. 19
0
 public static EndpointAddress ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion version)
 {
     Fx.Assert(reader.IsStartElement(XD.AddressingDictionary.ReplyTo, version.DictionaryNamespace), "");
     return(EndpointAddress.ReadFrom(version, reader));
 }
Esempio n. 20
0
 private FaultToHeader(EndpointAddress faultTo, AddressingVersion version)
     : base(version)
 {
     FaultTo = faultTo;
 }
Esempio n. 21
0
 private MessageIDHeader(UniqueId messageId, AddressingVersion version)
     : base(version)
 {
     MessageId = messageId;
 }
Esempio n. 22
0
 protected ToHeader(Uri to, AddressingVersion version)
     : base(version)
 {
     To = to;
 }
Esempio n. 23
0
 public FullMessageIDHeader(UniqueId messageId, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
     : base(messageId, version)
 {
     _actor          = actor;
     _mustUnderstand = mustUnderstand;
     _relay          = relay;
 }
Esempio n. 24
0
 private ActionHeader(string action, AddressingVersion version)
     : base(version)
 {
     Action = action;
 }
Esempio n. 25
0
            //Uri relationship;

            public FullRelatesToHeader(UniqueId messageId, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
                : base(messageId, version)
            {
                //this.relationship = relationship;
                _actor          = actor;
                _mustUnderstand = mustUnderstand;
                _relay          = relay;
            }
Esempio n. 26
0
 FromHeader(EndpointAddress from, AddressingVersion version)
     : base(version)
 {
     this.from = from;
 }