SqlServices.GenerateSessionStateScripts Method

Definition

Generates the SQL script for installing or removing session state. The script will reference the database indicated by the database parameter.

public:
 static System::String ^ GenerateSessionStateScripts(bool install, System::Web::Management::SessionStateType type, System::String ^ customDatabase);
public static string GenerateSessionStateScripts (bool install, System.Web.Management.SessionStateType type, string customDatabase);
static member GenerateSessionStateScripts : bool * System.Web.Management.SessionStateType * string -> string
Public Shared Function GenerateSessionStateScripts (install As Boolean, type As SessionStateType, customDatabase As String) As String

Parameters

install
Boolean

true to generate a script that installs the specified features; false to generate a script that removes the features.

type
SessionStateType

One of the SessionStateType values, specifying the type of session state for which to generate scripts.

customDatabase
String

The name of the SQL Server database to use in the generated scripts.

Returns

Returns the generated script code.

Exceptions

The type is Custom and the customDatabase value is not supplied, or the type is either Temporary or Persisted and the customDatabase value is not null.

Applies to

See also