Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the composite identifier separator pattern from the ADO.NET provider's data source information and calls the Split method with this value and the input string.
Namespace: Microsoft.VisualStudio.Data.AdoDotNet
Assembly: Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Protected Overrides Function SplitIntoParts ( _
typeName As String, _
identifier As String _
) As String()
protected override string[] SplitIntoParts(
string typeName,
string identifier
)
protected:
virtual array<String^>^ SplitIntoParts(
String^ typeName,
String^ identifier
) override
abstract SplitIntoParts :
typeName:string *
identifier:string -> string[]
override SplitIntoParts :
typeName:string *
identifier:string -> string[]
protected override function SplitIntoParts(
typeName : String,
identifier : String
) : String[]
Parameters
- typeName
Type: System.String
The name of a data object type.
- identifier
Type: System.String
A partially or fully formatted identifier.
Return Value
Type: array<System.String[]
Returns an array of formatted identifier parts.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | The typeName and/or identifier parameter is null. |
Remarks
The string identifier passed in may or may not be formatted correctly; in the latter case, the method should attempt to do its best at parsing it into identifier parts.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
AdoDotNetObjectIdentifierConverter Class