Share via


SqlErrorExtensions.ExtractStrings Method

Parses a SqlError message and extracts the field identified by the key.

Namespace:  Microsoft.TeamFoundation.Framework.Server
Assembly:  Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ExtractStrings ( _
    error As SqlError, _
    key As String _
) As List(Of String)
public static List<string> ExtractStrings(
    this SqlError error,
    string key
)
[ExtensionAttribute]
public:
static List<String^>^ ExtractStrings(
    SqlError^ error, 
    String^ key
)
static member ExtractStrings : 
        error:SqlError * 
        key:string -> List<string> 
public static function ExtractStrings(
    error : SqlError, 
    key : String
) : List<String>

Parameters

Return Value

Type: System.Collections.Generic.List<String>
A list of values found for the given key.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SqlError. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

Searches for the pattern %key=value% and returns value.

.NET Framework Security

See Also

Reference

SqlErrorExtensions Class

Microsoft.TeamFoundation.Framework.Server Namespace