示例#1
0
 internal AuthorizerEventArgs(IntPtr pUserData, SQLiteAuthorizerActionCode actionCode, string argument1, string argument2, string database, string context, SQLiteAuthorizerReturnCode returnCode) : this()
 {
     this.UserData   = pUserData;
     this.ActionCode = actionCode;
     this.Argument1  = argument1;
     this.Argument2  = argument2;
     this.Database   = database;
     this.Context    = context;
     this.ReturnCode = returnCode;
 }
示例#2
0
 private AuthorizerEventArgs()
 {
     this.UserData   = IntPtr.Zero;
     this.ActionCode = SQLiteAuthorizerActionCode.None;
     this.Argument1  = null;
     this.Argument2  = null;
     this.Database   = null;
     this.Context    = null;
     this.ReturnCode = SQLiteAuthorizerReturnCode.Ok;
 }