C# Класс Google.PowerShell.CloudStorage.GcsCmdlet

Base class for Google Cloud Storage-based cmdlets.
Наследование: GCloudCmdlet
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetContentType ( string newContentType, string>.Dictionary newMetadata, string defaultContentType = null ) : string

Return the content type to use for a Cloud Storage object given existing values, defauts, etc. The order of precidence is: 1. New content type, e.g. a ContentType parameter. 2. New metadata, e.g. Metadata value specified via parameter. 3. Default content type to apply (potentially null), e.g. sniffing file content. If no match is found, will return OctetStreamMimeType.

InferContentType ( string file ) : string

Infer the MIME type of a non-qualified file path. Returns null if no match is found.

Защищенные методы

Метод Описание
ConvertToDictionary ( Hashtable hashtable ) : string>.Dictionary

Convert a PowerShell HashTable object into a string/string Dictionary.

ConvertToDictionary ( string>.IDictionary idict ) : string>.Dictionary

Converts an IDictionary into a Dictionary instance. (This method is preferred over passing it to the constructor for Dictionary since this will handle the null case.)

GetBaseUri ( string bucket, string objectName ) : string

Constructs the media URL of an object from its bucket and name. This does not include the generation or any preconditions. The returned string will always have a query parameter, so later query parameters can unconditionally be appended with an "&" prefix.

Приватные методы

Метод Описание
StorageService ( GetBaseClientServiceInitializer ( ) : System

Описание методов

ConvertToDictionary() защищенный Метод

Convert a PowerShell HashTable object into a string/string Dictionary.
protected ConvertToDictionary ( Hashtable hashtable ) : string>.Dictionary
hashtable System.Collections.Hashtable
Результат string>.Dictionary

ConvertToDictionary() защищенный Метод

Converts an IDictionary into a Dictionary instance. (This method is preferred over passing it to the constructor for Dictionary since this will handle the null case.)
protected ConvertToDictionary ( string>.IDictionary idict ) : string>.Dictionary
idict string>.IDictionary
Результат string>.Dictionary

GetBaseUri() защищенный Метод

Constructs the media URL of an object from its bucket and name. This does not include the generation or any preconditions. The returned string will always have a query parameter, so later query parameters can unconditionally be appended with an "&" prefix.
protected GetBaseUri ( string bucket, string objectName ) : string
bucket string
objectName string
Результат string

GetContentType() публичный Метод

Return the content type to use for a Cloud Storage object given existing values, defauts, etc. The order of precidence is: 1. New content type, e.g. a ContentType parameter. 2. New metadata, e.g. Metadata value specified via parameter. 3. Default content type to apply (potentially null), e.g. sniffing file content. If no match is found, will return OctetStreamMimeType.
public GetContentType ( string newContentType, string>.Dictionary newMetadata, string defaultContentType = null ) : string
newContentType string
newMetadata string>.Dictionary
defaultContentType string
Результат string

InferContentType() публичный статический Метод

Infer the MIME type of a non-qualified file path. Returns null if no match is found.
public static InferContentType ( string file ) : string
file string
Результат string