コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the class.
 /// </summary>
 /// <param name="format">The format in which <b>theOperator</b> is specified in. See <see cref="T:GsmComm.GsmCommunication.OperatorFormat" />
 /// for a list of possible values.
 /// </param>
 /// <param name="theOperator">The operator in the format specified by <b>format</b></param>
 /// <param name="accessTechnology">The access technology registered to.</param>
 public OperatorInfo(OperatorFormat format, string theOperator, string accessTechnology)
 {
     this.format           = format;
     this.theOperator      = theOperator;
     this.accessTechnology = accessTechnology;
 }
コード例 #2
0
ファイル: OperatorInfo.cs プロジェクト: gbmakaveli/GSMComm
		/// <summary>
		/// Initializes a new instance of the class.
		/// </summary>
		/// <param name="format">The format in which <b>theOperator</b> is specified in. See <see cref="T:GsmComm.GsmCommunication.OperatorFormat" />
		/// for a list of possible values.
		/// </param>
		/// <param name="theOperator">The operator in the format specified by <b>format</b></param>
		/// <param name="accessTechnology">The access technology registered to.</param>
		public OperatorInfo(OperatorFormat format, string theOperator, string accessTechnology)
		{
			this.format = format;
			this.theOperator = theOperator;
			this.accessTechnology = accessTechnology;
		}
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the class.
 /// </summary>
 /// <param name="format">The format in which <b>theOperator</b> is specified in. See <see cref="T:GsmComm.GsmCommunication.OperatorFormat" />
 /// for a list of possible values.
 /// </param>
 /// <param name="theOperator">The operator in the format specified by <b>format</b></param>
 public OperatorInfo(OperatorFormat format, string theOperator)
 {
     this.format           = format;
     this.theOperator      = theOperator;
     this.accessTechnology = string.Empty;
 }
コード例 #4
0
ファイル: OperatorInfo.cs プロジェクト: gbmakaveli/GSMComm
		/// <summary>
		/// Initializes a new instance of the class.
		/// </summary>
		/// <param name="format">The format in which <b>theOperator</b> is specified in. See <see cref="T:GsmComm.GsmCommunication.OperatorFormat" />
		/// for a list of possible values.
		/// </param>
		/// <param name="theOperator">The operator in the format specified by <b>format</b></param>
		public OperatorInfo(OperatorFormat format, string theOperator)
		{
			this.format = format;
			this.theOperator = theOperator;
			this.accessTechnology = string.Empty;
		}