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
Public Shared Function ExtractString ( _
    error As SqlError, _
    key As String _
) As String
public static string ExtractString(
    SqlError error,
    string key
)
public:
static String^ ExtractString(
    SqlError^ error, 
    String^ key
)
static member ExtractString : 
        error:SqlError * 
        key:string -> string
public static function ExtractString(
    error : SqlError, 
    key : String
) : String
Parameters
- error 
 Type: System.Data.SqlClient.SqlError- The error to search. 
- key 
 Type: System.String- Which value to look for. 
Return Value
Type: System.String
The extracted string value, or the empty string if not found.
Remarks
Searches for the pattern %key=value% and returns value.
.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.