BindingUtilities.SetBinding Method (Parameter, IEnumerable<array<Object[]>)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Binds an indexed parameter to a sequence of values.

Namespace:  Microsoft.SolverFoundation.Services
Assembly:  Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Sub SetBinding ( _
    parameter As Parameter, _
    data As IEnumerable(Of Object()) _
)
public static void SetBinding(
    this Parameter parameter,
    IEnumerable<Object[]> data
)
[ExtensionAttribute]
public:
static void SetBinding(
    Parameter^ parameter, 
    IEnumerable<array<Object^>^>^ data
)
static member SetBinding : 
        parameter:Parameter * 
        data:IEnumerable<Object[]> -> unit 
public static function SetBinding(
    parameter : Parameter, 
    data : IEnumerable<Object[]>
)

Parameters

  • data
    Type: System.Collections.Generic.IEnumerable<array<Object[]>
    A sequence of values containing the indexes and values. The first entry in each element in the sequence contains the value; the remaining entries are indexes.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Parameter. 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).

.NET Framework Security

See Also

Reference

BindingUtilities Class

SetBinding Overload

Microsoft.SolverFoundation.Services Namespace