2024-04-21 03:30:36 -05:00
# GetValidCharacterComposition Method
2024-06-24 01:17:33 -05:00
Static method that returns a valid character composition based on the given ValidCharacterCollection parameters.
2024-04-21 03:30:36 -05:00
## Definition
**Namespace:** < a href = "N_CapyKit_Helpers.md" > CapyKit.Helpers< / a >
2024-04-22 18:28:21 -05:00
**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0
2024-04-21 03:30:36 -05:00
**C#**
``` C#
private static string GetValidCharacterComposition(
params ValidCharacterCollection[] validCharacters
)
```
**F#**
``` F#
private static member GetValidCharacterComposition :
validCharacters : ValidCharacterCollection[] -> string
```
#### Parameters
2024-06-24 01:17:33 -05:00
< 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 >
2024-04-21 03:30:36 -05:00
#### Return Value
< a href = "https://learn.microsoft.com/dotnet/api/system.string" target = "_blank" rel = "noopener noreferrer" > String< / a >
2024-06-24 01:17:33 -05:00
A string containing all the characters from the specified character sets.
2024-04-21 03:30:36 -05:00
## See Also
#### Reference
< a href = "T_CapyKit_Helpers_SecurityHelper.md" > SecurityHelper Class< / a >
< a href = "N_CapyKit_Helpers.md" > CapyKit.Helpers Namespace< / a >