SqlSmoObject.GetParameter Method (StringBuilder, ScriptingOptions, String, String, Int32%, Boolean)
Assigns a parameter of the SqlSmoObject.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Protected Friend Sub GetParameter ( _
buffer As StringBuilder, _
so As ScriptingOptions, _
propName As String, _
sqlPropScript As String, _
ByRef count As Integer, _
throwIfNotSet As Boolean _
)
'Usage
Dim buffer As StringBuilder
Dim so As ScriptingOptions
Dim propName As String
Dim sqlPropScript As String
Dim count As Integer
Dim throwIfNotSet As Boolean
Me.GetParameter(buffer, so, propName, _
sqlPropScript, count, throwIfNotSet)
protected internal void GetParameter(
StringBuilder buffer,
ScriptingOptions so,
string propName,
string sqlPropScript,
ref int count,
bool throwIfNotSet
)
protected public:
void GetParameter(
StringBuilder^ buffer,
ScriptingOptions^ so,
String^ propName,
String^ sqlPropScript,
int% count,
bool throwIfNotSet
)
member GetParameter :
buffer:StringBuilder *
so:ScriptingOptions *
propName:string *
sqlPropScript:string *
count:int byref *
throwIfNotSet:bool -> unit
function GetParameter(
buffer : StringBuilder,
so : ScriptingOptions,
propName : String,
sqlPropScript : String,
count : int,
throwIfNotSet : boolean
)
Parameters
- buffer
Type: System.Text.StringBuilder
A StringBuilder object buffer.
- so
Type: Microsoft.SqlServer.Management.Smo.ScriptingOptions
A ScriptingOptions object.
- propName
Type: System.String
A string value that specifies the property name.
- sqlPropScript
Type: System.String
A string value that specifies the script.
- count
Type: System.Int32%
A pointer to Int32 that specifies the count.
- throwIfNotSet
Type: System.Boolean
A Boolean value that indicates whether to throw and exception if the parameter is not set.
See Also