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.
Returns an identifier that corresponds to the decoded value of the provided string.
Namespace: Microsoft.Data.Schema.SchemaModel
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public Shared Sub DecodeIdentifier ( _
encodedIdentifier As String, _
<OutAttribute> ByRef externalParts As List(Of String), _
<OutAttribute> ByRef internalParts As List(Of String) _
)
public static void DecodeIdentifier(
string encodedIdentifier,
out List<string> externalParts,
out List<string> internalParts
)
public:
static void DecodeIdentifier(
String^ encodedIdentifier,
[OutAttribute] List<String^>^% externalParts,
[OutAttribute] List<String^>^% internalParts
)
static member DecodeIdentifier :
encodedIdentifier:string *
externalParts:List<string> byref *
internalParts:List<string> byref -> unit
public static function DecodeIdentifier(
encodedIdentifier : String,
externalParts : List<String>,
internalParts : List<String>
)
Parameters
- encodedIdentifier
Type: System.String
The string to decode.
- externalParts
Type: System.Collections.Generic.List<String>%
(Output) An IList<T> of type String that contains the external parts that correspond to the identifier.
- internalParts
Type: System.Collections.Generic.List<String>%
(Output) An IList<T> of type String that contains the internal parts that correspond to the identifier.
.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.