C# Class GenericCloudStorageClient.GoogleCloudStorage

Inheritance: ICloudRequest
Show file Open project: vcholan/generic-cloud-storage-client

Public Methods

Method Description
Authenticate ( string username, string password ) : string
CreateFolder ( string foldername ) : bool
DeleteFile ( string filename ) : bool
DeleteFolder ( string foldername ) : bool
DownloadFile ( string filename ) : void
ListFiles ( ) : void
ListFolders ( ) : void
UploadFile ( string filename ) : bool

Method Details

Authenticate() public method

public Authenticate ( string username, string password ) : string
username string
password string
return string

CreateFolder() public method

public CreateFolder ( string foldername ) : bool
foldername string
return bool

DeleteFile() public method

public DeleteFile ( string filename ) : bool
filename string
return bool

DeleteFolder() public method

public DeleteFolder ( string foldername ) : bool
foldername string
return bool

DownloadFile() public method

public DownloadFile ( string filename ) : void
filename string
return void

ListFiles() public method

public ListFiles ( ) : void
return void

ListFolders() public method

public ListFolders ( ) : void
return void

UploadFile() public method

public UploadFile ( string filename ) : bool
filename string
return bool