Applicasa.ThirdPartyAction.HandleResponse C# (CSharp) Method

HandleResponse() private method

private HandleResponse ( bool success, Applicasa error, ThirdPartyActionArray ThirdPartyActionArrayPtr ) : void
success bool
error Applicasa
ThirdPartyActionArrayPtr ThirdPartyActionArray
return void
        private static void HandleResponse(bool success, Applicasa.Error error, ThirdPartyActionArray ThirdPartyActionArrayPtr)
        {
            ThirdPartyAction[] array = null;
            if (success)
            {
                if (ThirdPartyActionArrayPtr.ArraySize >0)
                    array = GetThirdPartyActionArray(ThirdPartyActionArrayPtr);
            }
            if (kCallback!= null)
            kCallback(success, error, array);
            kCallback = null;
        }