SqlFeatures Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No features. |
Membership | 1 | The membership feature. |
Profile | 2 | The profile feature. |
RoleManager | 4 | The role manager feature. |
Personalization | 8 | The personalization feature. |
SqlWebEventProvider | 16 | The Web event provider feature. |
All | 1073741855 | All features. |
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
.NET