C# 클래스 jQueryApi.jQueryXmlHttpRequest

상속: IDeferred
파일 보기 프로젝트 열기: Saltarelle/SaltarelleJQuery 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Always jQueryXmlHttpRequest
Done jQueryXmlHttpRequest
Fail jQueryXmlHttpRequest
GetAwaiter TaskAwaiter
IDeferred IDeferred
IDeferred IDeferred
IDeferred IDeferred
IDeferred IDeferred
IDeferred IDeferred
IDeferred bool
IPromise void
IPromise void
IPromise void
jQueryXmlHttpRequest System

공개 메소드들

메소드 설명
Abort ( ) : void

Aborts the request.

Complete ( AjaxCompletedCallback callback ) : jQueryXmlHttpRequest

Adds a callback to handle completion of the request.

Error ( AjaxErrorCallback callback ) : jQueryXmlHttpRequest

Adds a callback to handle an error completing the request.

GetAllResponseHeaders ( ) : string

Gets the response headers associated with the request.

GetResponseHeader ( string name ) : string

Gets a specific response header associated with the request.

OverrideMimeType ( string type ) : void

Sets the mime type on the request.

Pipe ( jQueryDeferredFilter successFilter ) : jQueryXmlHttpRequest

Filters or chains the result of the request.

Pipe ( jQueryDeferredFilter successFilter, jQueryDeferredFilter failFilter ) : jQueryXmlHttpRequest

Filters or chains the result of the request.

SetRequestHeader ( string name, string value ) : void

Sets a request header value.

Success ( AjaxCallback callback ) : jQueryXmlHttpRequest

Adds a callback to handle a successful completion of the request.

Success ( AjaxRequestCallback callback ) : jQueryXmlHttpRequest

Adds a callback to handle a successful completion of the request.

Then ( System.Action doneCallback, System.Action failCallback ) : jQueryXmlHttpRequest

Add handlers to be called when the request is completed. If the request is already completed, the handlers are still invoked.

Then ( Callback doneCallback, Callback failCallback ) : jQueryXmlHttpRequest

Add handlers to be called when the request is completed. If the request is already completed, the handlers are still invoked.

비공개 메소드들

메소드 설명
Always ( ) : jQueryXmlHttpRequest
Done ( ) : jQueryXmlHttpRequest
Fail ( ) : jQueryXmlHttpRequest
GetAwaiter ( ) : TaskAwaiter
IDeferred ( ) : IDeferred
IDeferred ( System.Action doneCallback, System.Action failCallback ) : IDeferred
IDeferred ( Callback doneCallback, Callback failCallback ) : IDeferred
IDeferred ( jQueryDeferredFilter successFilter ) : IDeferred
IDeferred ( jQueryDeferredFilter successFilter, jQueryDeferredFilter failFilter ) : IDeferred
IDeferred ( ) : bool
IPromise ( Delegate fulfilledHandler ) : void
IPromise ( Delegate fulfilledHandler, Delegate errorHandler ) : void
IPromise ( Delegate fulfilledHandler, Delegate errorHandler, Delegate progressHandler ) : void
jQueryXmlHttpRequest ( ) : System

메소드 상세

Abort() 공개 메소드

Aborts the request.
public Abort ( ) : void
리턴 void

Complete() 공개 메소드

Adds a callback to handle completion of the request.
public Complete ( AjaxCompletedCallback callback ) : jQueryXmlHttpRequest
callback AjaxCompletedCallback The callback to invoke.
리턴 jQueryXmlHttpRequest

Error() 공개 메소드

Adds a callback to handle an error completing the request.
public Error ( AjaxErrorCallback callback ) : jQueryXmlHttpRequest
callback AjaxErrorCallback The callback to invoke.
리턴 jQueryXmlHttpRequest

GetAllResponseHeaders() 공개 메소드

Gets the response headers associated with the request.
public GetAllResponseHeaders ( ) : string
리턴 string

GetResponseHeader() 공개 메소드

Gets a specific response header associated with the request.
public GetResponseHeader ( string name ) : string
name string The name of the response header.
리턴 string

OverrideMimeType() 공개 메소드

Sets the mime type on the request.
public OverrideMimeType ( string type ) : void
type string The mime type to use.
리턴 void

Pipe() 공개 메소드

Filters or chains the result of the request.
public Pipe ( jQueryDeferredFilter successFilter ) : jQueryXmlHttpRequest
successFilter jQueryDeferredFilter The filter to invoke when the request successfully completes.
리턴 jQueryXmlHttpRequest

Pipe() 공개 메소드

Filters or chains the result of the request.
public Pipe ( jQueryDeferredFilter successFilter, jQueryDeferredFilter failFilter ) : jQueryXmlHttpRequest
successFilter jQueryDeferredFilter The filter to invoke when the request successfully completes.
failFilter jQueryDeferredFilter The filter to invoke when the request fails.
리턴 jQueryXmlHttpRequest

SetRequestHeader() 공개 메소드

Sets a request header value.
public SetRequestHeader ( string name, string value ) : void
name string The name of the request header.
value string The value of the request header.
리턴 void

Success() 공개 메소드

Adds a callback to handle a successful completion of the request.
public Success ( AjaxCallback callback ) : jQueryXmlHttpRequest
callback AjaxCallback The callback to invoke.
리턴 jQueryXmlHttpRequest

Success() 공개 메소드

Adds a callback to handle a successful completion of the request.
public Success ( AjaxRequestCallback callback ) : jQueryXmlHttpRequest
callback AjaxRequestCallback The callback to invoke.
리턴 jQueryXmlHttpRequest

Then() 공개 메소드

Add handlers to be called when the request is completed. If the request is already completed, the handlers are still invoked.
public Then ( System.Action doneCallback, System.Action failCallback ) : jQueryXmlHttpRequest
doneCallback System.Action The callback to invoke when the request completes successfully.
failCallback System.Action The callback to invoke when the request completes with an error.
리턴 jQueryXmlHttpRequest

Then() 공개 메소드

Add handlers to be called when the request is completed. If the request is already completed, the handlers are still invoked.
public Then ( Callback doneCallback, Callback failCallback ) : jQueryXmlHttpRequest
doneCallback Callback The callback to invoke when the request completes successfully.
failCallback Callback The callback to invoke when the request completes with an error.
리턴 jQueryXmlHttpRequest