Share via


ParseOptions.BatchSeparator Property

Gets the string used to separate a single script into multiple batches.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Parser
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Property BatchSeparator As String
    Get
    Set
'Usage
Dim instance As ParseOptions
Dim value As String

value = instance.BatchSeparator

instance.BatchSeparator = value
public string BatchSeparator { get; set; }
public:
property String^ BatchSeparator {
    String^ get ();
    void set (String^ value);
}
member BatchSeparator : string with get, set
function get BatchSeparator () : String
function set BatchSeparator (value : String)

Property Value

Type: System.String
The string used to separate a single script into multiple batches. The default is GO.