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.
AddArrayParameter records the name of the array and a certain number of values from the array in addition to the overall count of values.
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
Public Sub AddArrayParameter(Of T) ( _
parameterName As String, _
parameterArray As IList(Of T) _
)
public void AddArrayParameter<T>(
string parameterName,
IList<T> parameterArray
)
public:
generic<typename T>
void AddArrayParameter(
String^ parameterName,
IList<T>^ parameterArray
)
member AddArrayParameter :
parameterName:string *
parameterArray:IList<'T> -> unit
JScript does not support generic types or methods.
Type Parameters
- T
Type of object stored in the array
Parameters
parameterName
Type: System.StringName of the array parameter.
parameterArray
Type: System.Collections.Generic.IList<T>The array values.
.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.