Checks if the given name of table is encrypted and returns true if it is , otherwise returns false

Namespace: White_Tiger
Assembly: White Tiger (in White Tiger.dll) Version: 0.1.3.5 (0.1.3.5)

Syntax

C#
public bool IsTableEncrypted(
	string username,
	string pass,
	string dbname,
	string tablename
)
Visual Basic
Public Function IsTableEncrypted ( 
	username As String,
	pass As String,
	dbname As String,
	tablename As String
) As Boolean
Visual C++
public:
virtual bool IsTableEncrypted(
	String^ username, 
	String^ pass, 
	String^ dbname, 
	String^ tablename
) sealed

Parameters

username
Type: System..::..String
user's name
pass
Type: System..::..String
user's password
dbname
Type: System..::..String
name of database
tablename
Type: System..::..String
name of table

Return Value

Type: Boolean
returns true if it is , otherwise returns false

Implements

IWhiteTigerService..::..IsTableEncrypted(String, String, String, String)

See Also