Class ArubaInvalidResolvePassException
Represents an exception for when a token fails on one or more devices.
Implements
Inherited Members
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure.Exceptions
Assembly: Aruba.Infrastructure.dll
Syntax
[Serializable]
public class ArubaInvalidResolvePassException : ArubaException, ISerializable
Remarks
Initializes a new instance of the ArubaInvalidResolvePassException class.
Constructors
View SourceArubaInvalidResolvePassException(List<Exception>, List<int>, List<object?>)
Represents an exception for when a token fails on one or more devices.
Declaration
public ArubaInvalidResolvePassException(List<Exception> tokenExceptions, List<int> indexesOfFailedValues, List<object?> resolvedResults)
Parameters
Type | Name | Description |
---|---|---|
List<Exception> | tokenExceptions | The list of token exceptions that occurred. |
List<int> | indexesOfFailedValues | The list of indexes that correspond to failed values in |
List<object> | resolvedResults | The list of resolved results for the token. |
Remarks
Initializes a new instance of the ArubaInvalidResolvePassException class.
ArubaInvalidResolvePassException(Exception)
Initializes a new instance of the ArubaInvalidResolvePassException class.
Declaration
public ArubaInvalidResolvePassException(Exception tokenException)
Parameters
Type | Name | Description |
---|---|---|
Exception | tokenException | The token exception that occurred. |
Properties
View SourceIndexesOfFailedValues
Gets a list of indexes that correspond to the failed values in ResolveResults. Invalid values are set to null, but since a token could return null as an expected value we need to track which results threw an exception.
Declaration
public List<int>? IndexesOfFailedValues { get; }
Property Value
Type | Description |
---|---|
List<int> |
ResolveResults
Gets the resolve results for the token during this resolve pass. Invalid results are still included as null values.
Declaration
public List<object?>? ResolveResults { get; }
Property Value
Type | Description |
---|---|
List<object> |
TokenExceptions
Gets a list of token exceptions that occurred during a resolve pass.
Declaration
public List<Exception>? TokenExceptions { get; }
Property Value
Type | Description |
---|---|
List<Exception> |