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