C# Class Simpl.OODSS.Messages.RequestMessage

Inheritance: ServiceMessage, ISendableRequest
Afficher le fichier Open project: ecologylab/simplCSharp Class Usage Examples

Méthodes publiques

Méthode Description
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

Method Details

ErrorRedirectUri() public méthode

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.
Résultat Simpl.Fundamental.Net.ParsedUri

IsDisposable() public méthode

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
Résultat bool

OkRedirectUri() public méthode

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.
Résultat Simpl.Fundamental.Net.ParsedUri

PerformService() public abstract méthode

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.
Résultat ResponseMessage

RequestMessage() public méthode

public RequestMessage ( ) : Ecologylab.Collections
Résultat Ecologylab.Collections