C# 클래스 Simpl.OODSS.Messages.RequestMessage

상속: ServiceMessage, ISendableRequest
파일 보기 프로젝트 열기: ecologylab/simplCSharp 1 사용 예제들

공개 메소드들

메소드 설명
ErrorRedirectUri ( Scope clientSessionScope ) : ParsedUri

A URL can be provided, indicating the response should be accomplished with HTTP redirect. Used when browser security is an issue. This is the redirect URL for response when processing results in an error.

IsDisposable ( ) : bool

Indicates whether or not this type of message may be ignored by the server, if the server becomes backed-up. For example, a RequestMessage subclass that simply requests the server's current state may be ignored if a more recent copy of one has arrived later. By default, RequestMessages are not disposable; this method should be overriden if they are to be.

OkRedirectUri ( Scope clientSessionScope ) : ParsedUri

A URL can be provided, indicating the response should be accomplished with HTTP redirect. Used when browser security is an issue. This is the redirect URL for response when processing is successful.

PerformService ( Scope clientSessionScope ) : ResponseMessage

Perform the service associated with the request, using the supplied context as needed.

RequestMessage ( ) : Ecologylab.Collections

메소드 상세

ErrorRedirectUri() 공개 메소드

A URL can be provided, indicating the response should be accomplished with HTTP redirect. Used when browser security is an issue. This is the redirect URL for response when processing results in an error.
public ErrorRedirectUri ( Scope clientSessionScope ) : ParsedUri
clientSessionScope Scope /// Can be used to generate HTTP GET style arguments in the redirect URL.
리턴 Simpl.Fundamental.Net.ParsedUri

IsDisposable() 공개 메소드

Indicates whether or not this type of message may be ignored by the server, if the server becomes backed-up. For example, a RequestMessage subclass that simply requests the server's current state may be ignored if a more recent copy of one has arrived later. By default, RequestMessages are not disposable; this method should be overriden if they are to be.
public IsDisposable ( ) : bool
리턴 bool

OkRedirectUri() 공개 메소드

A URL can be provided, indicating the response should be accomplished with HTTP redirect. Used when browser security is an issue. This is the redirect URL for response when processing is successful.
public OkRedirectUri ( Scope clientSessionScope ) : ParsedUri
clientSessionScope Scope /// Can be used to generate HTTP GET style arguments in the redirect URL.
리턴 Simpl.Fundamental.Net.ParsedUri

PerformService() 공개 추상적인 메소드

Perform the service associated with the request, using the supplied context as needed.
public abstract PerformService ( Scope clientSessionScope ) : ResponseMessage
clientSessionScope Scope Context to perform it in/with.
리턴 ResponseMessage

RequestMessage() 공개 메소드

public RequestMessage ( ) : Ecologylab.Collections
리턴 Ecologylab.Collections