MethodInvocationExceptionAllExceptionsKey Field

ScaleOut Software NamedCache API
The key that can be used with the Data dictionary to retrieve an IListT of exceptions that occurred while processing the NamedCache.Invoke operation.

Namespace:  Soss.Client
Assembly:  soss_namedcache (in soss_namedcache.dll) Version: 6.2.0.0
Syntax

public const string AllExceptionsKey = "MethodInvocationExceptions"

Field Value

Type: String
Remarks

The full list of user exceptions may be retrieved as follows:
catch(MethodInvocationException mie) 
{
    IList<Exception> exceptionList = (IList<Exception>) mie.Data[AllExceptionsKey];
    // do something with the exception list
    throw;
}
See Also

Reference