SqlFeatures Enum

Definition

Specifies the ASP.Net features to install or remove using the methods provided by the SqlServices class.

This enumeration supports a bitwise combination of its member values.

public enum class SqlFeatures
[System.Flags]
public enum SqlFeatures
[<System.Flags>]
type SqlFeatures = 
Public Enum SqlFeatures
Inheritance
SqlFeatures
Attributes

Fields

All 1073741855

All features.

Membership 1

The membership feature.

None 0

No features.

Personalization 8

The personalization feature.

Profile 2

The profile feature.

RoleManager 4

The role manager feature.

SqlWebEventProvider 16

The Web event provider feature.

Examples

The following code example shows how to use the SqlFeatures enumeration with the Install(String, SqlFeatures, String) method of the SqlServices class.

// Install membership and personalization.
SqlServices.Install(database,
    SqlFeatures.Membership &
    SqlFeatures.Personalization,
    connectionString);
' Install membership and personalization.
SqlServices.Install(database, _
    SqlFeatures.Membership And _
    SqlFeatures.Personalization, _
    connectionString)

Remarks

This enumeration has a FlagsAttribute, which means you can select two or more features by combining them with the & (and) operator (the And operator in Visual Basic).

Applies to

See also