LoginRequest Class

Design Pattern Framework 3.5

Design Pattern Framework 3.5 LoginRequest Class
Patterns-In-Action! ApplicationActionService.MessagesLoginRequest
Represents a login request message from a client. Contains user credentials.
Declaration Syntax
C# Visual Basic
public class LoginRequest : RequestBase
Public Class LoginRequest _
	Inherits RequestBase
Members
All Members Constructors Methods Fields



Icon Member Description
LoginRequest()()()
Initializes a new instance of the LoginRequest class

AccessToken
Each web service request carries a security token as an extra level of security. Tokens are issued when users are coming online. They can expire if necessary. Google.com and Amazon.com uses this in their API.
(Inherited from RequestBase.)
Action
Crud action: Create, Read, Update, Delete
(Inherited from RequestBase.)
ClientTag
Each web service request carries a security token as an extra level of security. Tokens are issued when users are coming online. They can expire if necessary. Google.com and Amazon.com uses this in their API.
(Inherited from RequestBase.)
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize()()()
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
GetHashCode()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()
Gets the Type of the current instance.
(Inherited from Object.)
LoadOptions
Load options indicated what types are to be returned in the request.
(Inherited from RequestBase.)
MemberwiseClone()()()
Creates a shallow copy of the current Object.
(Inherited from Object.)
Password
Password credential.

RequestId
A unique number (ideally a Guid) issued by the client representing the instance of the request. Avoids rapid-fire processing of the same request over and over in denial-of-service type attacks.
(Inherited from RequestBase.)
ToString()()()
Returns a String that represents the current Object.
(Inherited from Object.)
UserName
User name credential.

Version
Minimum version number that client request is required to run under. This facilitates a certain level of backward compatibility for when the web service API evolves. Ebay.com uses the version number in their API.
(Inherited from RequestBase.)
Inheritance Hierarchy
Object
RequestBase
  LoginRequest

Assembly: ActionService (Module: ActionService) Version: 1.0.0.0 (1.0.0.0)