UniformDistributionParameter.SetBinding<T> Method (IEnumerable<T>, String, String)

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

Binds the parameter to data.

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

Syntax

'Declaration
Public Sub SetBinding(Of T) ( _
    binding As IEnumerable(Of T), _
    lowerBoundField As String, _
    upperBoundField As String _
)
public void SetBinding<T>(
    IEnumerable<T> binding,
    string lowerBoundField,
    string upperBoundField
)
public:
generic<typename T>
void SetBinding(
    IEnumerable<T>^ binding, 
    String^ lowerBoundField, 
    String^ upperBoundField
)
member SetBinding : 
        binding:IEnumerable<'T> * 
        lowerBoundField:string * 
        upperBoundField:string -> unit 
JScript does not support generic types or methods.

Type Parameters

  • T

Parameters

  • lowerBoundField
    Type: System.String
    The name of the property of each input object that contains the lower bound for the distribution.
  • upperBoundField
    Type: System.String
    The name of the property of each input object that contains the upper bound for the distribution.

Remarks

Each parameter must be bound before attempting to solve the model. The data must be in the form of a sequence of objects, where each object has properties for the value and indexes of the data element. The data is read each time the Context.Solve method is called.

.NET Framework Security

See Also

Reference

UniformDistributionParameter Class

SetBinding Overload

Microsoft.SolverFoundation.Services Namespace