Parse Method (String, Boolean)
Parse a string into a Qualified Identifier
Namespace: Microsoft.Data.Tools.Model
Assembly: Microsoft.Data.Tools.Model (in Microsoft.Data.Tools.Model.dll)
Syntax
'Declaration
Public Shared Function Parse ( _
id As String, _
throwOnFailure As Boolean _
) As QualifiedIdentifier
'Usage
Dim id As String
Dim throwOnFailure As Boolean
Dim returnValue As QualifiedIdentifier
returnValue = QualifiedIdentifier.Parse(id, throwOnFailure)
public static QualifiedIdentifier Parse(
string id,
bool throwOnFailure
)
public:
static QualifiedIdentifier^ Parse(
String^ id,
bool throwOnFailure
)
static member Parse :
id:string *
throwOnFailure:bool -> QualifiedIdentifier
public static function Parse(
id : String,
throwOnFailure : boolean
) : QualifiedIdentifier
Parameters
- id
Type: System..::..String
The string identifier to parse
- throwOnFailure
Type: System..::..Boolean
Flag indicating if the method should throw exceptions or not
Return Value
Type: Microsoft.Data.Tools.Model..::..QualifiedIdentifier
The newly parsed qualified identifier