19 references to TryParse
mscorlib (1)
system\security\claims\ClaimsPrincipal.cs (1)
410
if (Int64.
TryParse
(listOfIdentities[i], NumberStyles.Integer, NumberFormatInfo.InvariantInfo, out handle))
System (5)
net\System\Net\_Connection.cs (2)
2196
bool success = long.
TryParse
(contentLengthString, NumberStyles.None, CultureInfo.InvariantCulture.NumberFormat, out contentLength);
2205
success = long.
TryParse
(contentLengthString, NumberStyles.None, CultureInfo.InvariantCulture.NumberFormat, out contentLength);
net\System\Net\_FtpControlStream.cs (1)
996
if (Int64.
TryParse
(str.Substring(pos1, pos2-pos1),
net\System\Net\HttpListenerRequest.cs (1)
403
bool success = long.
TryParse
(length, NumberStyles.None, CultureInfo.InvariantCulture.NumberFormat, out m_ContentLength);
net\System\Net\mail\ContentDisposition.cs (1)
45
if (!long.
TryParse
(value.ToString(),
System.Data (1)
fx\src\data\System\Data\Filter\ConstNode.cs (1)
170
if (Int64.
TryParse
(sval, NumberStyles.Integer, NumberFormatInfo.InvariantInfo, out i8)) {
System.Data.Entity (4)
System\Data\Common\EntitySql\AST\Literal.cs (2)
278
if (!Int64.
TryParse
(numberPart, NumberStyles.Integer, CultureInfo.InvariantCulture, out value))
365
if (!Int64.
TryParse
(numericString, NumberStyles.Integer, CultureInfo.InvariantCulture, out int64Value))
System\Data\EntityModel\SchemaObjectModel\ScalarType.cs (1)
179
if (!Int64.
TryParse
(text, System.Globalization.NumberStyles.Integer, System.Globalization.CultureInfo.InvariantCulture, out temp))
System\Data\EntityModel\SchemaObjectModel\SchemaEnumMember.cs (1)
84
if (long.
TryParse
(reader.Value, NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture, out tmpValue))
System.Data.Services (1)
System\Data\Services\Serializers\JsonReader.cs (1)
90
if (long.
TryParse
(ticksStr, NumberStyles.Integer, NumberFormatInfo.InvariantInfo, out ticks))
System.Data.Services.Client (2)
System\Data\Services\Client\AtomParser.cs (1)
994
if (!long.
TryParse
(MaterializeAtom.ReadElementString(this.reader, true), System.Globalization.NumberStyles.Integer, System.Globalization.CultureInfo.InvariantCulture, out countValue))
System\Data\Services\Client\MaterializeFromAtom.cs (1)
518
if (!long.
TryParse
(countNode.Value, System.Globalization.NumberStyles.Integer, System.Globalization.CultureInfo.InvariantCulture, out this.countValue))
System.Runtime.Serialization (1)
System\Runtime\Serialization\Json\JsonObjectDataContract.cs (1)
81
if (Int64.
TryParse
(value, NumberStyles.Float, NumberFormatInfo.InvariantInfo, out longValue))
System.Web (2)
Compilation\BuildResultCache.cs (2)
727
Int64.
TryParse
(hashTokens[0], NumberStyles.AllowHexSpecifier, CultureInfo.InvariantCulture, out value1) &&
728
Int64.
TryParse
(hashTokens[1], NumberStyles.AllowHexSpecifier, CultureInfo.InvariantCulture, out value2)) {
System.Web.Extensions (1)
Script\Serialization\JavaScriptObjectDeserializer.cs (1)
244
if (Int64.
TryParse
(input, NumberStyles.Integer, CultureInfo.InvariantCulture, out l)) {
System.Xml (1)
System\Xml\XmlConvert.cs (1)
952
if (!Int64.
TryParse
(s, NumberStyles.AllowLeadingSign|NumberStyles.AllowLeadingWhite|NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo, out result)) {