DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Security.UserInfo Class Reference

Public Member Functions

 UserInfo (string name, UserIdentification identification)
 

Properties

string Name [get, private set]
 
UserIdentification Identification [get, private set]
 

Detailed Description

Definition at line 22 of file UserInfo.cs.

Constructor & Destructor Documentation

Deveel.Data.Security.UserInfo.UserInfo ( string  name,
UserIdentification  identification 
)
inline

Definition at line 23 of file UserInfo.cs.

23  {
24  if (String.IsNullOrEmpty(name))
25  throw new ArgumentNullException("name");
26  if (identification == null)
27  throw new ArgumentNullException("identification");
28 
29  Name = name;
30  Identification = identification;
31  }
A long string in the system.
UserIdentification Identification
Definition: UserInfo.cs:35

Property Documentation

UserIdentification Deveel.Data.Security.UserInfo.Identification
getprivate set

Definition at line 35 of file UserInfo.cs.

string Deveel.Data.Security.UserInfo.Name
getprivate set

Definition at line 33 of file UserInfo.cs.


The documentation for this class was generated from the following file: