TeamFoundationSqlResourceComponent.BindLong Method
A helper function that handles binding a 64-bit value to its sqlparameters.
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
Protected Function BindLong ( _
parameterName As String, _
parameterValue As Long _
) As SqlParameter
protected SqlParameter BindLong(
string parameterName,
long parameterValue
)
protected:
SqlParameter^ BindLong(
String^ parameterName,
long long parameterValue
)
member BindLong :
parameterName:string *
parameterValue:int64 -> SqlParameter
protected function BindLong(
parameterName : String,
parameterValue : long
) : SqlParameter
Parameters
parameterName
Type: System.StringName of the parameter in the statement.
parameterValue
Type: System.Int64Value of the parameter.
Return Value
Type: System.Data.SqlClient.SqlParameter
The newly created and initialized 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.