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)
17
public static unsafe MsQuicTlsSecret? Create(
MsQuicContextSafeHandle
handle)
System\Net\Quic\QuicConnection.cs (1)
110
private readonly
MsQuicContextSafeHandle
_handle;
System\Net\Quic\QuicListener.cs (1)
74
private readonly
MsQuicContextSafeHandle
_handle;
System\Net\Quic\QuicStream.cs (3)
60
private readonly
MsQuicContextSafeHandle
_handle;
166
internal unsafe QuicStream(
MsQuicContextSafeHandle
connectionHandle, QuicStreamType type, long defaultErrorCode)
208
internal unsafe QuicStream(
MsQuicContextSafeHandle
connectionHandle, QUIC_HANDLE* handle, QUIC_STREAM_OPEN_FLAGS flags, long defaultErrorCode)