KeySizes(Int32, Int32, Int32) Constructor
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.
Initializes a new instance of the KeySizes class with the specified key values.
public:
KeySizes(int minSize, int maxSize, int skipSize);
public KeySizes (int minSize, int maxSize, int skipSize);
new System.Security.Cryptography.KeySizes : int * int * int -> System.Security.Cryptography.KeySizes
Public Sub New (minSize As Integer, maxSize As Integer, skipSize As Integer)
Parameters
- minSize
- Int32
The minimum valid key size.
- maxSize
- Int32
The maximum valid key size.
- skipSize
- Int32
The interval between valid key sizes.
Examples
The following code shows the use of the KeySizes constructor. This code example is part of a larger example provided for the KeySizes class.
int minSize = 64;
int maxSize = 1024;
int skipSize = 64;
KeySizes^ keySizes =
gcnew KeySizes(minSize, maxSize, skipSize);
int minSize = 64;
int maxSize = 1024;
int skipSize = 64;
KeySizes keySizes = new KeySizes(minSize, maxSize, skipSize);
Dim MinSize As Integer = 64
Dim MaxSize As Integer = 1024
Dim SkipSize As Integer = 64
Dim keySizes As New KeySizes(MinSize, MaxSize, SkipSize)
Applies to
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.