Method | Description | |
---|---|---|
AmazonS3Uri ( |
Constructs a parser for the S3 URI specified as a Uri instance.
|
|
AmazonS3Uri ( string uri ) : System |
Constructs a parser for the S3 URI specified as a string.
|
|
IsAmazonS3Endpoint ( |
Checks whether the given URI is a Amazon S3 URI.
|
|
IsAmazonS3Endpoint ( string uri ) : bool |
Checks whether the given URI is a Amazon S3 URI.
|
|
TryParseAmazonS3Uri ( |
If the given Uri is an AmazonS3Endpoint return true and set the AmazonS3Uri out parameter.
|
|
TryParseAmazonS3Uri ( string uri, |
If the given string is an AmazonS3Endpoint return true and set the AmazonS3Uri out parameter.
|
Method | Description | |
---|---|---|
AppendDecoded ( StringBuilder builder, string s, int index ) : void |
Decodes the percent-encoded character at the given index in the string and appends the decoded value to the string under construction.
|
|
Decode ( string s ) : string |
Percent-decodes the given string, with a fast path for strings that are not percent-encoded.
|
|
Decode ( string s, int firstPercent ) : string |
Percent-decodes the given string.
|
|
FromHex ( char c ) : int |
Converts a hex character (0-9A-Fa-f) into its corresponding quad value.
|
public AmazonS3Uri ( |
||
uri | The S3 URI to be parsed. | |
return | System |
public AmazonS3Uri ( string uri ) : System | ||
uri | string | The S3 URI to be parsed. |
return | System |
public static IsAmazonS3Endpoint ( |
||
uri | The S3 URI to be checked. | |
return | bool |
public static IsAmazonS3Endpoint ( string uri ) : bool | ||
uri | string | The S3 URI to be checked. |
return | bool |
public static TryParseAmazonS3Uri ( |
||
uri | ||
amazonS3Uri | ||
return | bool |
public static TryParseAmazonS3Uri ( string uri, |
||
uri | string | |
amazonS3Uri | ||
return | bool |