Exemplo n.º 1
0
 protected Message(Name messageType, CorrelationID corr, Service service)
 {
     this._correlationId = corr;
     this._messageType = messageType;
     this._service = service;
 }
Exemplo n.º 2
0
 public Element GetElement(Name name)
 {
     return this.GetElement(name.ToString());
 }
Exemplo n.º 3
0
 public bool HasElement(Name name, bool excludeNullElements = false)
 {
     return this.HasElement(name.ToString(), excludeNullElements);
 }
Exemplo n.º 4
0
 public Element GetElement(Name name)
 {
     return this[name];
 }
Exemplo n.º 5
0
 public void Set(Name name, bool elementValue)
 {
     this.Set(name.ToString(), elementValue);
 }
Exemplo n.º 6
0
 public Element this[Name name]
 {
     get { return this[name.ToString()]; }
 }
Exemplo n.º 7
0
 public virtual void Append(Name name, string elementValue)
 {
     this.Append(name.ToString(), elementValue);
 }
Exemplo n.º 8
0
 public void SetElement(Name name, object value)
 {
     this.SetElement(name.ToString(), value);
 }
Exemplo n.º 9
0
 public void Set(Name name, Datetime elementValue)
 {
     this.Set(name.ToString(), elementValue);
 }
Exemplo n.º 10
0
 public string GetElementAsString(Name name)
 {
     return this.GetElementAsString(name.ToString());
 }
Exemplo n.º 11
0
 public Datetime GetElementAsTime(Name name)
 {
     return this.GetElementAsTime(name.ToString());
 }
Exemplo n.º 12
0
 public long GetElementAsInt64(Name name)
 {
     return this.GetElementAsInt64(name.ToString());
 }
Exemplo n.º 13
0
 public int GetElementAsInt32(Name name)
 {
     return this.GetElementAsInt32(name.ToString());
 }
Exemplo n.º 14
0
 public double GetElementAsFloat64(Name name)
 {
     return this.GetElementAsFloat64(name.ToString());
 }
Exemplo n.º 15
0
 public float GetElementAsFloat32(Name name)
 {
     return this.GetElementAsFloat32(name.ToString());
 }
Exemplo n.º 16
0
 public bool GetElementAsBoolean(Name name)
 {
     return this.GetElementAsBool(name.ToString());
 }