DataObjectIdentifierConverter.BuildString Method

Builds a string version of an identifier.

Namespace:  Microsoft.VisualStudio.Data.Framework
Assembly:  Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)

Syntax

'Declaration
Protected MustOverride Function BuildString ( _
    typeName As String, _
    identifierParts As String(), _
    format As DataObjectIdentifierFormat _
) As String
protected abstract string BuildString(
    string typeName,
    string[] identifierParts,
    DataObjectIdentifierFormat format
)
protected:
virtual String^ BuildString(
    String^ typeName, 
    array<String^>^ identifierParts, 
    DataObjectIdentifierFormat format
) abstract
abstract BuildString : 
        typeName:string * 
        identifierParts:string[] * 
        format:DataObjectIdentifierFormat -> string
protected abstract function BuildString(
    typeName : String, 
    identifierParts : String[], 
    format : DataObjectIdentifierFormat
) : String

Parameters

  • identifierParts
    Type: array<System.String[]

    An array of identifier parts in the expected format.

Return Value

Type: System.String
A string version of an identifier.

Remarks

The enumeration DataObjectIdentifierFormat has the following values: None, Default, WithQuotes, and ForDisplay.

Notes to Inheritors

The derived class must implement this method.

.NET Framework Security

See Also

Reference

DataObjectIdentifierConverter Class

Microsoft.VisualStudio.Data.Framework Namespace