CspParameters Constructor (Int32, String)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new instance of the CspParameters class with the specified provider type code and name.
Namespace: System.Security.Cryptography
Assembly: mscorlib.Extensions (in mscorlib.Extensions.dll)
Syntax
'Declaration
Public Sub New ( _
dwTypeIn As Integer, _
strProviderNameIn As String _
)
public CspParameters(
int dwTypeIn,
string strProviderNameIn
)
Parameters
- dwTypeIn
Type: System.Int32
A provider type code that specifies the kind of provider to create.
- strProviderNameIn
Type: System.String
A provider name.
Remarks
Use the CspParameters constructor to specify a provider type and name.
Specify a provider type by passing a numeric value that represents the desired provider type. The numeric values that represent the default provider types are defined in the WinCrypt.h header file:
- To specify a provider compatible with the RSA algorithm, pass a value of 1to the dwTypeIn parameter.
For information about other provider type values, see the ProviderType field. For more information about the default provider types and their behaviors, see the Microsoft Cryptography API (CAPI) documentation in the MSDN library.
Version Information
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also