1 write to _nativeCookedUrl
Microsoft.AspNetCore.Server.HttpSys (1)
src\Shared\HttpSys\NativeInterop\CookedUrl.cs (1)
16_nativeCookedUrl = nativeCookedUrl;
16 references to _nativeCookedUrl
Microsoft.AspNetCore.Server.HttpSys (16)
src\Shared\HttpSys\NativeInterop\CookedUrl.cs (16)
21if (!_nativeCookedUrl.pFullUrl.Equals(null) && _nativeCookedUrl.FullUrlLength > 0) 23return Marshal.PtrToStringUni((IntPtr)_nativeCookedUrl.pFullUrl.Value, _nativeCookedUrl.FullUrlLength / 2); 30if (!_nativeCookedUrl.pHost.Equals(null) && _nativeCookedUrl.HostLength > 0) 32return Marshal.PtrToStringUni((IntPtr)_nativeCookedUrl.pHost.Value, _nativeCookedUrl.HostLength / 2); 39if (!_nativeCookedUrl.pAbsPath.Equals(null) && _nativeCookedUrl.AbsPathLength > 0) 41return Marshal.PtrToStringUni((IntPtr)_nativeCookedUrl.pAbsPath.Value, _nativeCookedUrl.AbsPathLength / 2); 48if (!_nativeCookedUrl.pQueryString.Equals(null) && _nativeCookedUrl.QueryStringLength > 0) 50return Marshal.PtrToStringUni((IntPtr)_nativeCookedUrl.pQueryString.Value, _nativeCookedUrl.QueryStringLength / 2);