RouteTransportMode Enumeration | 
 
            The transport mode for a route.
            
 
    Namespace: 
   Demo3D.MultiModel.Shared
    Assembly:
   Demo3D.Core (in Demo3D.Core.dll) Version: 18.03.00
Syntaxpublic enum RouteTransportMode
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Unknown | 0 | 
            The transport mode is unknown.
             | 
 | UnrestrictedAutomatic | 1 | 
            This mode will automatically send loads to the Receiver regardless of its availability.
            Use this mode when: You are managing bulk flow of loads between models with no control.
             | 
 | UnrestrictedManual | 2 | 
            This mode will send loads only when the user selects the ConsumeLoad button.
            There are no checks on the Receiver of whether it is free or not.
            Use this mode when: Doing manual debugging.
             | 
 | RestrictedAutomatic | 3 | 
            This mode ensures there is availability on the Receiver to accept the load.
            If the Receiver is blocked, then Sender will not consume/transmit the load.
            If the Receiver is cleared, then the Sender will consume/transmit the load.
            Use this mode when: You have controlled conveyance that cannot have overlapping loads.
             | 
See Also