5 instantiations of MsQuicContextSafeHandle
System.Net.Quic (5)
System\Net\Quic\QuicConnection.cs (2)
328_handle = new MsQuicContextSafeHandle(handle, context, SafeHandleType.Connection); 355_handle = new MsQuicContextSafeHandle(handle, context, SafeHandleType.Connection);
System\Net\Quic\QuicListener.cs (1)
131_handle = new MsQuicContextSafeHandle(handle, context, SafeHandleType.Listener);
System\Net\Quic\QuicStream.cs (2)
179_handle = new MsQuicContextSafeHandle(handle, context, SafeHandleType.Stream, connectionHandle) 213_handle = new MsQuicContextSafeHandle(handle, context, SafeHandleType.Stream, connectionHandle)
7 references to MsQuicContextSafeHandle
System.Net.Quic (7)
System\Net\Quic\Internal\MsQuicApi.cs (1)
34[DynamicDependency(DynamicallyAccessedMemberTypes.PublicConstructors, typeof(MsQuicContextSafeHandle))]
System\Net\Quic\Internal\MsQuicTlsSecret.cs (1)
17public static unsafe MsQuicTlsSecret? Create(MsQuicContextSafeHandle handle)
System\Net\Quic\QuicConnection.cs (1)
110private readonly MsQuicContextSafeHandle _handle;
System\Net\Quic\QuicListener.cs (1)
74private readonly MsQuicContextSafeHandle _handle;
System\Net\Quic\QuicStream.cs (3)
60private readonly MsQuicContextSafeHandle _handle; 166internal unsafe QuicStream(MsQuicContextSafeHandle connectionHandle, QuicStreamType type, long defaultErrorCode) 208internal unsafe QuicStream(MsQuicContextSafeHandle connectionHandle, QUIC_HANDLE* handle, QUIC_STREAM_OPEN_FLAGS flags, long defaultErrorCode)