DelegateGetSvcInstRootRegPathByName Delegate

Definition

Represents whether the registry path root for a specific SQL instance is set by the given friendly instance name.

public delegate bool DelegateGetSvcInstRootRegPathByName(System::String ^ sInstanceName, SQL_SVCS Service, StringBuilder ^ sRegPath, [Runtime::InteropServices::Out] System::UInt32 % pdwSize);
public delegate bool DelegateGetSvcInstRootRegPathByName(string sInstanceName, SQL_SVCS Service, StringBuilder sRegPath, out uint pdwSize);
type DelegateGetSvcInstRootRegPathByName = delegate of string * SQL_SVCS * StringBuilder * uint32 -> bool
Public Delegate Function DelegateGetSvcInstRootRegPathByName(sInstanceName As String, Service As SQL_SVCS, sRegPath As StringBuilder, ByRef pdwSize As UInteger) As Boolean 

Parameters

sInstanceName
String

The name of the instance.

Service
SQL_SVCS

The SQL service.

sRegPath
StringBuilder

The registry path.

pdwSize
UInt32

The estimated size of the structure returned, in bytes.

Return Value

true if the registry path root for a specific SQL instance is set by the given friendly instance name; otherwise, false.

Applies to