C# Class Rock.Storage.Provider.Database

Inheritance: ProviderComponent
Exibir arquivo Open project: NewSpring/Rock Class Usage Examples

Public Methods

Method Description
DeleteContent ( BinaryFile file ) : void

Deletes the content from the external storage medium associated with the provider.

GetContentStream ( BinaryFile file ) : Stream

Gets the contents from the external storage medium associated with the provider

SaveContent ( BinaryFile file ) : void

Saves the binary file contents to the external storage medium associated with the provider.

Method Details

DeleteContent() public method

Deletes the content from the external storage medium associated with the provider.
public DeleteContent ( BinaryFile file ) : void
file BinaryFile The file.
return void

GetContentStream() public method

Gets the contents from the external storage medium associated with the provider
public GetContentStream ( BinaryFile file ) : Stream
file BinaryFile The file.
return System.IO.Stream

SaveContent() public method

Saves the binary file contents to the external storage medium associated with the provider.
public SaveContent ( BinaryFile file ) : void
file BinaryFile The file.
return void