C# Класс WopiHost.AbstractEditSession

Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Dispose ( ) : void

Disposes of all allocated resources.

GetCheckFileInfo ( ) : CheckFileInfo

Gets information about a file.

GetFileContent ( ) : byte[]

Returns content of a file.

SetFileContent ( byte newContent ) : Action

Accepts new content of a file and replaces old content with it.

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

Метод Описание
AbstractEditSession ( IWopiFile file, string sessionId, string login, string name, string email, bool isAnonymous ) : System

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

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

protected AbstractEditSession ( IWopiFile file, string sessionId, string login, string name, string email, bool isAnonymous ) : System
file IWopiFile
sessionId string
login string
name string
email string
isAnonymous bool
Результат System

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

Disposes of all allocated resources.
public Dispose ( ) : void
Результат void

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

Gets information about a file.
public GetCheckFileInfo ( ) : CheckFileInfo
Результат WopiHost.Models.CheckFileInfo

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

Returns content of a file.
public abstract GetFileContent ( ) : byte[]
Результат byte[]

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

Accepts new content of a file and replaces old content with it.
public abstract SetFileContent ( byte newContent ) : Action
newContent byte Content to set
Результат Action