Design Pattern Framework 3.5
ActionService.MessageBase Namespace
Patterns-In-Action! Application ► ActionService.MessageBase
Declaration Syntax
C# | Visual Basic |
namespace ActionService.MessageBase
Namespace ActionService.MessageBase
Types
All Types | Classes | Enumerations |
Icon | Type | Description |
---|---|---|
AcknowledgeType |
Enumeration of message response acknowledgements. This is a simple
enumerated values indicating success of failure.
|
|
PersistType |
Enumeration of database persistence actions.
(Also called CRUD operations: Create, Read, Update, Delete).
SOA Design Pattern: Command Message. Basically this in an instruction
or command to the receiver which operatin to execute.
|
|
RequestBase |
Base class for all client request messages of the web service. It standardizes
communication between web services and clients with a series of common values.
Derived request message classes assign values to these variables. There are no
default values.
|
|
ResponseBase |
Base class for all response messages to clients of the web service. It standardizes
communication between web services and clients with a series of common values and
their initial defaults. Derived response message classes can override the default
values if necessary.
|