TrackingServicesRemoveFromCarrier Method  | 
 
            Removes a set of specific 
Items from the specified carrier.
            
 
    Namespace: 
   FactoryLogix.xTend.Production
    Assembly:
   FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.254.0.0 (8.254.0.0)
Syntaxpublic void RemoveFromCarrier(
	Guid sessionId,
	Guid carrierId,
	Guid[] itemIds
)
Public Sub RemoveFromCarrier ( 
	sessionId As Guid,
	carrierId As Guid,
	itemIds As Guid()
)
public:
virtual void RemoveFromCarrier(
	Guid sessionId, 
	Guid carrierId, 
	array<Guid>^ itemIds
) sealed
abstract RemoveFromCarrier : 
        sessionId : Guid * 
        carrierId : Guid * 
        itemIds : Guid[] -> unit 
override RemoveFromCarrier : 
        sessionId : Guid * 
        carrierId : Guid * 
        itemIds : Guid[] -> unit Parameters
- sessionId
 - Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method. - carrierId
 - Type: SystemGuid
The Id of the Item representing the carrier to be unloaded. - itemIds
 - Type: SystemGuid
A list of Item Id properties representing the items to be removed from the carrier. 
Exceptions| Exception | Condition | 
|---|
| InvalidSessionException | Thrown if the sessionId parameter is invalid. | 
| ItemException | Thrown if the carrierId parameter is invalid, or if any of the itemIds are invalid. | 
See Also