C# 클래스 Rock.Model.BinaryFileService

Data Access Service class for Rock.Model.BinaryFile objects.
파일 보기 프로젝트 열기: NewSpring/Rock 1 사용 예제들

공개 메소드들

메소드 설명
BeginGet ( AsyncCallback callback, HttpContext context, System.Guid fileGuid ) : IAsyncResult

Initiates an asynchronous get of the binary file specified by fileGuid

BeginGet ( AsyncCallback callback, HttpContext context, int fileId ) : IAsyncResult

Initiates an asynchronous get of the binary file specified by fileId

EndGet ( IAsyncResult asyncResult, HttpContext context ) : BinaryFile

Ends the get.

EndGet ( IAsyncResult asyncResult, HttpContext context, bool &requiresViewSecurity ) : BinaryFile

Ends the get.

비공개 메소드들

메소드 설명
BeginGet ( AsyncCallback callback, HttpContext context, System.Guid fileGuid, int fileId ) : IAsyncResult

Initiates an asynchronous get of the binary file specified by fileId or fileGuid Intended to be used by an IHttpAsyncHandler

메소드 상세

BeginGet() 공개 메소드

Initiates an asynchronous get of the binary file specified by fileGuid
public BeginGet ( AsyncCallback callback, HttpContext context, System.Guid fileGuid ) : IAsyncResult
callback AsyncCallback The callback.
context System.Web.HttpContext The context.
fileGuid System.Guid The file unique identifier.
리턴 IAsyncResult

BeginGet() 공개 메소드

Initiates an asynchronous get of the binary file specified by fileId
public BeginGet ( AsyncCallback callback, HttpContext context, int fileId ) : IAsyncResult
callback AsyncCallback The callback.
context System.Web.HttpContext The context.
fileId int The file identifier.
리턴 IAsyncResult

EndGet() 공개 메소드

Ends the get.
public EndGet ( IAsyncResult asyncResult, HttpContext context ) : BinaryFile
asyncResult IAsyncResult The asynchronous result.
context System.Web.HttpContext The context.
리턴 BinaryFile

EndGet() 공개 메소드

Ends the get.
public EndGet ( IAsyncResult asyncResult, HttpContext context, bool &requiresViewSecurity ) : BinaryFile
asyncResult IAsyncResult The asynchronous result.
context System.Web.HttpContext The context.
requiresViewSecurity bool if set to true [requires security].
리턴 BinaryFile