Set-KrSessionString
SYNOPSIS
Sets a string value in the session by key.
SYNTAX
Set-KrSessionString [-Key] <String> [-Value] <String> [<CommonParameters>]
DESCRIPTION
This function accesses the current HTTP context’s session and sets the string value associated with the specified key.
EXAMPLES
EXAMPLE 1
Set-KrSessionString -Key "userName" -Value "JohnDoe"
Sets the string value associated with the key "userName" in the session to "JohnDoe".
PARAMETERS
-Key
The key of the session item to set.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Value
The string value to set in the session.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.