ETag.ToString(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the string representation of the ETag.
public string ToString (string format);
override this.ToString : string -> string
Public Function ToString (format As String) As String
Parameters
- format
- String
A format string. Valid values are "G" for standard format and "H" for header format.
Returns
The formatted string representation of this ETag. This includes outer quotes and the W/ prefix in the case of weak ETags.
Examples
ETag tag = ETag.Parse("\"sometag\"");
Console.WriteLine(tag.ToString("G"));
// Displays: sometag
Console.WriteLine(tag.ToString("H"));
// Displays: "sometag"
Applies to
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.
Azure SDK for .NET