OdbcPermission.Add(String, String, KeyRestrictionBehavior) Method

Definition

Adds access for the specified connection string to the existing state of the permission.

public:
 override void Add(System::String ^ connectionString, System::String ^ restrictions, System::Data::KeyRestrictionBehavior behavior);
public override void Add (string connectionString, string restrictions, System.Data.KeyRestrictionBehavior behavior);
override this.Add : string * string * System.Data.KeyRestrictionBehavior -> unit
Public Overrides Sub Add (connectionString As String, restrictions As String, behavior As KeyRestrictionBehavior)

Parameters

connectionString
String

A permitted connection string.

restrictions
String

String that identifies connection string parameters that are allowed or disallowed.

behavior
KeyRestrictionBehavior

One of the KeyRestrictionBehavior values.

Remarks

This method can be useful when you implement the following:

  • a .NET Framework data provider.

  • an API that must assert for data access permission.

  • an administrative tool or installation program that must modify security policy.

Applies to