英語で読む 編集

次の方法で共有


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.

C#
[System.Flags]
public enum SqlFeatures
Inheritance
SqlFeatures
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.

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

製品 バージョン
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also