C# 클래스 WopiHost.AbstractEditSession

파일 보기 프로젝트 열기: petrsvihlik/WopiHost 1 사용 예제들

공개 메소드들

메소드 설명
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