C# Класс BlueCollar.Dashboard.StaticFile

Provides access to embedded static files.
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
Create StaticFile
GetContents byte[]
GetHash string
StaticFile System

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

Метод Описание
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.

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

Метод Описание
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.

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

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

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.
Результат string

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

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.
Результат string