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.
This is a helper function that takes care of binding 32 bit value to their sqlparameters.
Namespace:  Microsoft.TeamFoundation.Framework.Server
Assembly:  Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
Protected Function BindDouble ( _
    parameterName As String, _
    parameterValue As Double _
) As SqlParameter
protected SqlParameter BindDouble(
    string parameterName,
    double parameterValue
)
protected:
SqlParameter^ BindDouble(
    String^ parameterName, 
    double parameterValue
)
member BindDouble : 
        parameterName:string * 
        parameterValue:float -> SqlParameter
protected function BindDouble(
    parameterName : String, 
    parameterValue : double
) : SqlParameter
Parameters
- parameterName 
 Type: System.String- Name of the parameter in the statement 
- parameterValue 
 Type: System.Double- Value of the parameter. Empty string results in a NULL value if NULLs are allowed 
Return Value
Type: System.Data.SqlClient.SqlParameter
The newly created and initilized sqlparameter
.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.