  | ASLObjectClaimCancelledRecoveryCallback Delegate | 
 Delegate for the claim canceled (rejected) callback function
 
    Namespace: 
   ASL
    Assembly:
   Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntaxpublic delegate void ClaimCancelledRecoveryCallback(
	string _id,
	int cancelledCount
)
Public Delegate Sub ClaimCancelledRecoveryCallback ( 
	_id As String,
	cancelledCount As Integer
)
public delegate void ClaimCancelledRecoveryCallback(
	String^ _id, 
	int cancelledCount
)
type ClaimCancelledRecoveryCallback = 
    delegate of 
        _id : string * 
        cancelledCount : int -> unitParameters
- _id
 - Type: SystemString
The id of the object that got its claim rejected - cancelledCount
 - Type: SystemInt32
How many claims were rejected/canceled. Can be null 
See Also