예제 #1
0
 /// <summary>
 /// Initializes a new instance of the LoggerGetContract class with
 /// required arguments.
 /// </summary>
 public LoggerGetContract(LoggerTypeContract type, IDictionary <string, string> credentials)
     : this()
 {
     if (credentials == null)
     {
         throw new ArgumentNullException("credentials");
     }
     this.Type        = type;
     this.Credentials = credentials;
 }
 /// <summary>
 /// Initializes a new instance of the LoggerGetContract class with
 /// required arguments.
 /// </summary>
 public LoggerGetContract(LoggerTypeContract type)
     : this()
 {
     this.Type = type;
 }
 /// <summary>
 /// Initializes a new instance of the LoggerUpdateParameters class with
 /// required arguments.
 /// </summary>
 public LoggerUpdateParameters(LoggerTypeContract type)
     : this()
 {
     this.Type = type;
 }
 /// <summary>
 /// Initializes a new instance of the LoggerCreateParameters class with
 /// required arguments.
 /// </summary>
 public LoggerCreateParameters(LoggerTypeContract type, IDictionary<string, string> credentials)
     : this()
 {
     if (credentials == null)
     {
         throw new ArgumentNullException("credentials");
     }
     this.Type = type;
     this.Credentials = credentials;
 }
 /// <summary>
 /// Initializes a new instance of the LoggerGetContract class with
 /// required arguments.
 /// </summary>
 public LoggerGetContract(LoggerTypeContract type)
     : this()
 {
     this.Type = type;
 }
예제 #6
0
 /// <summary>
 /// Initializes a new instance of the LoggerUpdateParameters class with
 /// required arguments.
 /// </summary>
 public LoggerUpdateParameters(LoggerTypeContract type)
     : this()
 {
     this.Type = type;
 }