1 instantiation of SafeOverlappedFree
System (1)
net\System\Net\_SafeNetHandles.cs (1)
708
internal static readonly SafeOverlappedFree Zero = new
SafeOverlappedFree
(false);
9 references to SafeOverlappedFree
System (9)
net\System\Net\_SafeNetHandles.cs (5)
708
internal static readonly
SafeOverlappedFree
Zero = new SafeOverlappedFree(false);
715
public static
SafeOverlappedFree
Alloc() {
716
SafeOverlappedFree
result = UnsafeNclNativeMethods.SafeNetHandlesSafeOverlappedFree.LocalAlloc(LPTR, (UIntPtr) Win32.OverlappedSize);
724
public static
SafeOverlappedFree
Alloc(SafeCloseSocket socketHandle) {
725
SafeOverlappedFree
result = Alloc();
net\System\Net\Sockets\_BaseOverlappedAsyncResult.cs (3)
26
private
SafeOverlappedFree
m_UnmanagedBlob; // Handle for global memory.
165
m_UnmanagedBlob =
SafeOverlappedFree
.Alloc(s.SafeHandle);
570
return (m_UnmanagedBlob == null || m_UnmanagedBlob.IsInvalid)?
SafeOverlappedFree
.Zero : m_UnmanagedBlob;
net\System\Net\UnsafeNativeMethods.cs (1)
623
internal static extern
SafeOverlappedFree
LocalAlloc(int uFlags, UIntPtr sizetdwBytes);