コード例 #1
0
ファイル: Message.cs プロジェクト: rowlandwatkins/BEmu
 protected Message(Name messageType, CorrelationID corr, Service service)
 {
     this._correlationId = corr;
     this._messageType = messageType;
     this._service = service;
 }
コード例 #2
0
ファイル: Message.cs プロジェクト: rowlandwatkins/BEmu
 public Element GetElement(Name name)
 {
     return this.GetElement(name.ToString());
 }
コード例 #3
0
ファイル: Message.cs プロジェクト: rowlandwatkins/BEmu
 public bool HasElement(Name name, bool excludeNullElements = false)
 {
     return this.HasElement(name.ToString(), excludeNullElements);
 }
コード例 #4
0
ファイル: Request.cs プロジェクト: rowlandwatkins/BEmu
 public Element GetElement(Name name)
 {
     return this[name];
 }
コード例 #5
0
ファイル: Request.cs プロジェクト: rowlandwatkins/BEmu
 public void Set(Name name, bool elementValue)
 {
     this.Set(name.ToString(), elementValue);
 }
コード例 #6
0
ファイル: Request.cs プロジェクト: rowlandwatkins/BEmu
 public Element this[Name name]
 {
     get { return this[name.ToString()]; }
 }
コード例 #7
0
ファイル: Request.cs プロジェクト: rowlandwatkins/BEmu
 public virtual void Append(Name name, string elementValue)
 {
     this.Append(name.ToString(), elementValue);
 }
コード例 #8
0
ファイル: Element.cs プロジェクト: rowlandwatkins/BEmu
 public void SetElement(Name name, object value)
 {
     this.SetElement(name.ToString(), value);
 }
コード例 #9
0
ファイル: Request.cs プロジェクト: rowlandwatkins/BEmu
 public void Set(Name name, Datetime elementValue)
 {
     this.Set(name.ToString(), elementValue);
 }
コード例 #10
0
ファイル: Element.cs プロジェクト: rowlandwatkins/BEmu
 public string GetElementAsString(Name name)
 {
     return this.GetElementAsString(name.ToString());
 }
コード例 #11
0
ファイル: Element.cs プロジェクト: rowlandwatkins/BEmu
 public Datetime GetElementAsTime(Name name)
 {
     return this.GetElementAsTime(name.ToString());
 }
コード例 #12
0
ファイル: Element.cs プロジェクト: rowlandwatkins/BEmu
 public long GetElementAsInt64(Name name)
 {
     return this.GetElementAsInt64(name.ToString());
 }
コード例 #13
0
ファイル: Element.cs プロジェクト: rowlandwatkins/BEmu
 public int GetElementAsInt32(Name name)
 {
     return this.GetElementAsInt32(name.ToString());
 }
コード例 #14
0
ファイル: Element.cs プロジェクト: rowlandwatkins/BEmu
 public double GetElementAsFloat64(Name name)
 {
     return this.GetElementAsFloat64(name.ToString());
 }
コード例 #15
0
ファイル: Element.cs プロジェクト: rowlandwatkins/BEmu
 public float GetElementAsFloat32(Name name)
 {
     return this.GetElementAsFloat32(name.ToString());
 }
コード例 #16
0
ファイル: Element.cs プロジェクト: rowlandwatkins/BEmu
 public bool GetElementAsBoolean(Name name)
 {
     return this.GetElementAsBool(name.ToString());
 }