Gets or sets the number of barges that are needed to fulfill an order.

Namespace:  BargeEx.Internal
Assembly:  BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)

Syntax

C#
public virtual int Count { get; set; }
Visual Basic (Declaration)
Public Overridable Property Count As Integer
Visual C++
public:
virtual property int Count {
	int get ();
	void set (int value);
}

Property Value

The number of barges that are needed to fulfill an order or the value 0 to indicate that all available barges that match the specified criteria should be used. The default is 0.

Remarks

When set to a value greater than zero (0) this represents the number of barges that should be used to fulfill this order. The barges must match criteria specified in the block. When set to zero (0) it indicates that all available barges that match the specified criteria should be used.

The CountSpecified property indicates whether or not this property will be included in the serialized class or generated document. The CountSpecified property is automatically set to true when this property is set.

See Also