Share via


StatementBuilder.AddProperty Method

Adds property to the SELECT list with specified name and value. Do not reference this member directly in your code. It supports the SQL Server infrastructure.

Namespace:  Microsoft.SqlServer.Management.Sdk.Sfc
Assembly:  Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)

Syntax

'Declaration
Public Sub AddProperty ( _
    name As String, _
    value As String _
)
'Usage
Dim instance As StatementBuilder
Dim name As String
Dim value As String

instance.AddProperty(name, value)
public void AddProperty(
    string name,
    string value
)
public:
void AddProperty(
    String^ name, 
    String^ value
)
member AddProperty : 
        name:string * 
        value:string -> unit 
public function AddProperty(
    name : String, 
    value : String
)

Parameters