SafeNCryptHandle Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SafeNCryptHandle() |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the SafeNCryptHandle class. |
SafeNCryptHandle(IntPtr, SafeHandle) |
Instantiates a new instance of the SafeNCryptHandle class. |
SafeNCryptHandle()
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
Initializes a new instance of the SafeNCryptHandle class.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
SafeNCryptHandle();
protected SafeNCryptHandle ();
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
protected SafeNCryptHandle ();
Protected Sub New ()
- Attributes
Applies to
SafeNCryptHandle(IntPtr, SafeHandle)
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
Instantiates a new instance of the SafeNCryptHandle class.
protected:
SafeNCryptHandle(IntPtr handle, System::Runtime::InteropServices::SafeHandle ^ parentHandle);
protected SafeNCryptHandle (IntPtr handle, System.Runtime.InteropServices.SafeHandle parentHandle);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
protected SafeNCryptHandle (IntPtr handle, System.Runtime.InteropServices.SafeHandle parentHandle);
new Microsoft.Win32.SafeHandles.SafeNCryptHandle : nativeint * System.Runtime.InteropServices.SafeHandle -> Microsoft.Win32.SafeHandles.SafeNCryptHandle
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
new Microsoft.Win32.SafeHandles.SafeNCryptHandle : nativeint * System.Runtime.InteropServices.SafeHandle -> Microsoft.Win32.SafeHandles.SafeNCryptHandle
Protected Sub New (handle As IntPtr, parentHandle As SafeHandle)
Parameters
- parentHandle
- SafeHandle
The parent handle of this SafeNCryptHandle.
- Attributes
Exceptions
parentHandle
is null
.