3 instantiations of HTTP_REQUEST_QUEUE_HANDLE
Microsoft.AspNetCore.Server.HttpSys (3)
_generated\45\Windows.Win32.HTTP_REQUEST_QUEUE_HANDLE.g.cs (3)
41
public static explicit operator HTTP_REQUEST_QUEUE_HANDLE(void* value) => new
HTTP_REQUEST_QUEUE_HANDLE
(value);
57
public static explicit operator HTTP_REQUEST_QUEUE_HANDLE(IntPtr value) => new
HTTP_REQUEST_QUEUE_HANDLE
((void*)value.ToPointer());
59
public static explicit operator HTTP_REQUEST_QUEUE_HANDLE(UIntPtr value) => new
HTTP_REQUEST_QUEUE_HANDLE
((void*)value.ToPointer());
19 references to HTTP_REQUEST_QUEUE_HANDLE
Microsoft.AspNetCore.Server.HttpSys (19)
_generated\12\Windows.Win32.HttpCloseRequestQueueSafeHandle.g.cs (2)
22
/// Represents a Win32 handle that can be closed with <see cref="PInvoke.HttpCloseRequestQueue(winmdroot.Networking.HttpServer.
HTTP_REQUEST_QUEUE_HANDLE
)"/>.
40
protected override bool ReleaseHandle() => PInvoke.HttpCloseRequestQueue((winmdroot.Networking.HttpServer.
HTTP_REQUEST_QUEUE_HANDLE
)this.handle) == 0;
_generated\45\Windows.Win32.HTTP_REQUEST_QUEUE_HANDLE.g.cs (13)
25
: IEquatable<
HTTP_REQUEST_QUEUE_HANDLE
>
35
internal static
HTTP_REQUEST_QUEUE_HANDLE
Null => default;
39
public static implicit operator void*(
HTTP_REQUEST_QUEUE_HANDLE
value) => value.Value;
41
public static explicit operator
HTTP_REQUEST_QUEUE_HANDLE
(void* value) => new HTTP_REQUEST_QUEUE_HANDLE(value);
43
public static bool operator ==(
HTTP_REQUEST_QUEUE_HANDLE
left,
HTTP_REQUEST_QUEUE_HANDLE
right) => left.Value == right.Value;
45
public static bool operator !=(
HTTP_REQUEST_QUEUE_HANDLE
left,
HTTP_REQUEST_QUEUE_HANDLE
right) => !(left == right);
47
public bool Equals(
HTTP_REQUEST_QUEUE_HANDLE
other) => this.Value == other.Value;
49
public override bool Equals(object obj) => obj is
HTTP_REQUEST_QUEUE_HANDLE
other && this.Equals(other);
55
public static implicit operator IntPtr(
HTTP_REQUEST_QUEUE_HANDLE
value) => new IntPtr(value.Value);
57
public static explicit operator
HTTP_REQUEST_QUEUE_HANDLE
(IntPtr value) => new HTTP_REQUEST_QUEUE_HANDLE((void*)value.ToPointer());
59
public static explicit operator
HTTP_REQUEST_QUEUE_HANDLE
(UIntPtr value) => new HTTP_REQUEST_QUEUE_HANDLE((void*)value.ToPointer());
_generated\77\Windows.Win32.PInvoke.HTTPAPI.dll.g.cs (4)
124
internal static extern uint HttpCloseRequestQueue(winmdroot.Networking.HttpServer.
HTTP_REQUEST_QUEUE_HANDLE
RequestQueueHandle);
126
/// <inheritdoc cref="HttpCreateRequestQueue(winmdroot.Networking.HttpServer.HTTPAPI_VERSION, winmdroot.Foundation.PCWSTR, winmdroot.Security.SECURITY_ATTRIBUTES*, uint, winmdroot.Networking.HttpServer.
HTTP_REQUEST_QUEUE_HANDLE
*)"/>
134
winmdroot.Networking.HttpServer.
HTTP_REQUEST_QUEUE_HANDLE
RequestQueueHandleLocal;
171
internal static extern unsafe uint HttpCreateRequestQueue(winmdroot.Networking.HttpServer.HTTPAPI_VERSION Version, [Optional] winmdroot.Foundation.PCWSTR Name, [Optional] winmdroot.Security.SECURITY_ATTRIBUTES* SecurityAttributes, [Optional] uint Flags, winmdroot.Networking.HttpServer.
HTTP_REQUEST_QUEUE_HANDLE
* RequestQueueHandle);