The new base class for the client and service side APIs.
Inheritance: Goedel.Protocol.JPCInterface
Ejemplo n.º 1
0
 /// <summary>
 /// Connect up to the specified Mesh Portal
 /// </summary>
 /// <param name="Portal">The portal to connect to.</param> 
 public MeshClient(string Portal) {
     this.Portal = Portal;
     MeshService = MeshPortal.Default.GetService(Portal);
     }
Ejemplo n.º 2
0
 /// <summary>
 /// Connect up to a specified Mesh Portal and account.
 /// </summary>
 /// <param name="Portal">The portal to connect to.</param>
 /// <param name="AccountID">The account identifier.</param>
 public MeshClient(string Portal, string AccountID) {
     MeshService = MeshPortal.Default.GetService(Portal, AccountID);
     this.AccountID = AccountID;
     }