DelegateGetSQLVerSpecificRegString Delegate
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.
Represents the specific registry string value for SQL server.
public delegate bool DelegateGetSQLVerSpecificRegString(System::String ^ sRegPath, System::String ^ sValueName, StringBuilder ^ sString, [Runtime::InteropServices::Out] System::UInt32 % pdwSize);
public delegate bool DelegateGetSQLVerSpecificRegString(string sRegPath, string sValueName, StringBuilder sString, out uint pdwSize);
type DelegateGetSQLVerSpecificRegString = delegate of string * string * StringBuilder * uint32 -> bool
Public Delegate Function DelegateGetSQLVerSpecificRegString(sRegPath As String, sValueName As String, sString As StringBuilder, ByRef pdwSize As UInteger) As Boolean
Parameters
- sRegPath
- String
The string value containing the registry path.
- sValueName
- String
The string value name.
- sString
- StringBuilder
The string builder.
- pdwSize
- UInt32
An unsigned integer value.
Return Value
true
if successful; otherwise, false
.