/// <summary>
 /// Construct the instance.
 /// </summary>
 /// <param name="rublon"></param>
 public RemoteLogoutHandler(RublonConsumer rublon)
 {
     this.rublon = rublon;
 }
 /// <summary>
 /// Construct the API method instance.
 /// </summary>
 /// <param name="rublon"></param>
 public GetAvailableFeatures(RublonConsumer rublon)
     : base(rublon)
 {
 }
 /// <summary>
 /// Construct the instance.
 /// </summary>
 /// <param name="rublon"></param>
 public RublonLoginGUI(RublonConsumer rublon)
     : base(rublon)
 {
 }
Example #4
0
 /// <summary>
 /// Construct the API method instance.
 /// </summary>
 /// <param name="rublon"></param>
 public APIMethod(RublonConsumer rublon)
 {
     this.rublon = rublon;
     client = new RESTClient(rublon);
 }
Example #5
0
 public RemoteLogout(RublonConsumer rublon)
     : base(rublon)
 {
 }
 /// <summary>
 /// Initialize object with RublonService instance.
 /// A RublonService class instance is required for
 /// the object to work.
 /// </summary>
 /// <param name="rublon">An instance of the RublonService class</param>
 public RublonAuthParams(RublonConsumer rublon)
 {
     this.rublon = rublon;
 }
Example #7
0
 /// <summary>
 /// Construct the instance.
 /// </summary>
 /// <param name="rublon"></param>
 public RublonGUI(RublonConsumer rublon)
 {
     this.rublon = rublon;
 }