Encodes text for use in query strings and form payloads.
ConvertTo-AtlassianURLEncoded [-InputString] <String[]> [<CommonParameters>]
Converts plain text into URL-encoded format by escaping reserved characters.
ConvertTo-AtlassianURLEncoded -InputString 'hello world+value'
Returns an encoded value such as hello+world%2bvalue.
The plain text values to encode.
Type: String[]
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
System.String[]
System.String