[This topic is part of the Microsoft Azure Storage Client Library 1.7, which has been deprecated. See
Storage Client Library for the latest version.]
Appends a string to the canonicalized resource string.
Namespace: Microsoft.WindowsAzure.StorageClient.Protocol
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
Visual Basic |
---|
Dim canonicalizedString As StringBuilder
Dim stringToAppend As String
Dim returnValue As String
returnValue = CanonicalizationStrategy.AppendStringToCanonicalizedString(canonicalizedString, stringToAppend) |
Syntax
Visual Basic |
---|
Protected Shared Function AppendStringToCanonicalizedString ( _
canonicalizedString As StringBuilder, _
stringToAppend As String _
) As String |
C# |
---|
protected static string AppendStringToCanonicalizedString (
StringBuilder canonicalizedString,
string stringToAppend
) |
C++ |
---|
protected:
static String^ AppendStringToCanonicalizedString (
StringBuilder^ canonicalizedString,
String^ stringToAppend
) |
Parameters
- canonicalizedString
Type: System.Text.StringBuilder
The canonicalized resource string.
- stringToAppend
Type: System.String
The string to append.
Return Value
Type:
System.StringThe modified canonicalized resource string.
Remarks
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also