C# Class BlueCollar.Dashboard.StaticFile

Provides access to embedded static files.
Show file Open project: ChadBurggraf/blue-collar Class Usage Examples

Private Properties

Property Type Description
Create StaticFile
GetContents byte[]
GetHash string
StaticFile System

Public Methods

Method Description
GetContentType ( string extension ) : string

Gets the content-type to use for files with the given extension. Expects the leading "." to be included with the extension.

GetContentsAsString ( string name ) : string

Loads the contents of an embedded static file and converts it to a string.

Private Methods

Method Description
Create ( string urlRoot, string path ) : StaticFile
GetContents ( string name ) : byte[]

Loads the contents of an embedded static file into a buffer and returns it.

GetHash ( string name ) : string
StaticFile ( ) : System

Prevents a default instance of the StaticFile class from being created.

Method Details

GetContentType() public static method

Gets the content-type to use for files with the given extension. Expects the leading "." to be included with the extension.
public static GetContentType ( string extension ) : string
extension string The extension to get the content-type for.
return string

GetContentsAsString() public static method

Loads the contents of an embedded static file and converts it to a string.
public static GetContentsAsString ( string name ) : string
name string The name of the file to load.
return string