CapyKit/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetValidCharacterComposition.md
2024-09-04 19:31:43 -05:00

38 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# GetValidCharacterComposition Method
Static method that returns a valid character composition based on the given ValidCharacterCollection parameters.
## Definition
**Namespace:** <a href="N_CapyKit_Helpers.md">CapyKit.Helpers</a>
**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.2
**C#**
``` C#
private static string GetValidCharacterComposition(
params ValidCharacterCollection[] validCharacters
)
```
**F#**
``` F#
private static member GetValidCharacterComposition :
validCharacters : ValidCharacterCollection[] -> string
```
#### Parameters
<dl><dt>  <a href="T_CapyKit_Helpers_ValidCharacterCollection.md">ValidCharacterCollection</a>[]</dt><dd>An array of ValidCharacterCollection enumeration values representing the desired character sets.</dd></dl>
#### Return Value
<a href="https://learn.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">String</a>
A string containing all the characters from the specified character sets.
## See Also
#### Reference
<a href="T_CapyKit_Helpers_SecurityHelper.md">SecurityHelper Class</a>
<a href="N_CapyKit_Helpers.md">CapyKit.Helpers Namespace</a>