net\System\Net\_FtpControlStream.cs (12)
894return Convert.ToInt64(parsedList[1], NumberFormatInfo.InvariantInfo);
910int year = Convert.ToInt32(dateTimeLine.Substring(0, 4), NumberFormatInfo.InvariantInfo);
911int month = Convert.ToInt16(dateTimeLine.Substring(4, 2), NumberFormatInfo.InvariantInfo);
912int day = Convert.ToInt16(dateTimeLine.Substring(6, 2), NumberFormatInfo.InvariantInfo);
913int hour = Convert.ToInt16(dateTimeLine.Substring(8, 2), NumberFormatInfo.InvariantInfo);
914int minute = Convert.ToInt16(dateTimeLine.Substring(10, 2), NumberFormatInfo.InvariantInfo);
915int second = Convert.ToInt16(dateTimeLine.Substring(12, 2), NumberFormatInfo.InvariantInfo);
918millisecond = Convert.ToInt16(parsedList[2], NumberFormatInfo.InvariantInfo);
1059int port = Convert.ToByte(parsedList[index--], NumberFormatInfo.InvariantInfo);
1061(Convert.ToByte(parsedList[index--], NumberFormatInfo.InvariantInfo) << 8);
1088return Convert.ToInt32(parsedList[3], NumberFormatInfo.InvariantInfo);
1190response.Status = Convert.ToInt16(response.StatusCodeString, NumberFormatInfo.InvariantInfo);
System\ServiceModel\Channels\MsmqDiagnostics.cs (8)
37dictionary["PublicQueues"] = Convert.ToString(publicQueues, CultureInfo.InvariantCulture);
145dictionary["Private"] = Convert.ToString(isPrivate, CultureInfo.InvariantCulture);
179dictionary["Private"] = Convert.ToString(isPrivate, CultureInfo.InvariantCulture);
288new StringTraceRecord("MSMQMessageLookupId", Convert.ToString(lookupId, CultureInfo.InvariantCulture)),
302new StringTraceRecord("MSMQMessageLookupId", Convert.ToString(lookupId, CultureInfo.InvariantCulture)),
439dictionary["NumberOfMessages"] = Convert.ToString(numberOfMessages, CultureInfo.InvariantCulture);
457dictionary["NumberOfMessages"] = Convert.ToString(numberOfMessages, CultureInfo.InvariantCulture);
474dictionary["Acknowledgment"] = Convert.ToString(acknowledgment, CultureInfo.InvariantCulture);