Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Divides a string version of an identifier into a set of identifier parts converted into the expected format.
Namespace: Microsoft.VisualStudio.Data.Framework
Assembly: Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)
Syntax
'Declaration
Protected MustOverride Function SplitIntoParts ( _
typeName As String, _
identifier As String _
) As String()
protected abstract string[] SplitIntoParts(
string typeName,
string identifier
)
protected:
virtual array<String^>^ SplitIntoParts(
String^ typeName,
String^ identifier
) abstract
abstract SplitIntoParts :
typeName:string *
identifier:string -> string[]
protected abstract function SplitIntoParts(
typeName : String,
identifier : String
) : String[]
Parameters
- typeName
Type: System.String
The name of a data object type.
- identifier
Type: System.String
A data source object identifier.
Return Value
Type: array<System.String[]
An array of formatted identifier parts.
Remarks
The string identifier passed in may not be formatted correctly; if it is not, the method should attempt to parse it into identifier parts.
Notes to Inheritors
The derived class must implement this method.
.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.