/// <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; }
/// <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; }