| external help file | Convert-help.xml |
|---|---|
| Module Name | Convert |
| online version | https://austoonz.github.io/Convert/functions/ConvertFrom-StringToCompressedByteArray/ |
| schema | 2.0.0 |
Converts a string to a compressed byte array object.
ConvertFrom-StringToCompressedByteArray [-String] <String[]> [[-Encoding] <String>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
Converts a string to a compressed byte array object.
$bytes = ConvertFrom-StringToCompressedByteArray -String 'A string'
$bytes.GetType()
IsPublic IsSerial Name BaseType
True True Byte[] System.Array
$bytes[0].GetType()
IsPublic IsSerial Name BaseType
True True Byte System.ValueType
A string object for conversion.
Type: String[]
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: FalseThe encoding to use for conversion. Defaults to UTF8. Valid options are ASCII, BigEndianUnicode, Default, Unicode, UTF32, and UTF8.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
https://austoonz.github.io/Convert/functions/ConvertFrom-StringToCompressedByteArray/