13 references to Parse
Microsoft.AspNetCore.Components (1)
Routing\RouteTable.cs (1)
132routeValues[parameter.Name] = long.Parse((string)parameterValue!, CultureInfo.InvariantCulture);
Microsoft.AspNetCore.Components.WebAssembly (1)
Services\DefaultWebAssemblyJSRuntime.cs (1)
77dotNetObjectId = long.Parse(assemblyNameOrDotNetObjectId, CultureInfo.InvariantCulture);
Microsoft.AspNetCore.Grpc.JsonTranscoding (2)
Internal\Json\Int64Converter.cs (1)
20return long.Parse(reader.GetString()!, CultureInfo.InvariantCulture);
src\Grpc\JsonTranscoding\src\Shared\Legacy.cs (1)
196long seconds = long.Parse(secondsText, CultureInfo.InvariantCulture) * multiplier;
Microsoft.AspNetCore.Grpc.Swagger (1)
src\Grpc\JsonTranscoding\src\Shared\Legacy.cs (1)
196long seconds = long.Parse(secondsText, CultureInfo.InvariantCulture) * multiplier;
Microsoft.AspNetCore.ResponseCaching.Tests (1)
TestUtils.cs (1)
61headers.ContentLength = long.Parse(contentLength, CultureInfo.InvariantCulture);
PresentationBuildTasks (1)
Microsoft\Build\Tasks\Windows\UidManager.cs (1)
872index = Int64.Parse(suffix, TypeConverterHelper.InvariantEnglishUS);
System.Data.Common (2)
System\Data\SQLTypes\SQLInt64.cs (2)
83return new SqlInt64(long.Parse(s, null)); 334return x.IsNull ? Null : new SqlInt64(long.Parse(x.Value, null));
System.Formats.Tar (1)
System\Formats\Tar\TarHelpers.cs (1)
190baseTenLong = long.Parse(strNumber, CultureInfo.InvariantCulture);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Convert.cs (1)
1324return long.Parse(value, provider);
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
220public static nint Parse(string s, IFormatProvider? provider) => (nint)nint_t.Parse(s, provider);
System.Runtime.Serialization.Formatters (1)
System\Runtime\Serialization\Formatters\Binary\BinaryUtilClasses.cs (1)
554_int64A[index] = long.Parse(value, CultureInfo.InvariantCulture);