Show / Hide Table of Contents

Class ArubaInvalidResolvePassException

Represents an exception for when a token fails on one or more devices.

Inheritance
object
Exception
ArubaException
ArubaInvalidResolvePassException
Implements
ISerializable
Inherited Members
Exception.GetBaseException()
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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 Source

ArubaInvalidResolvePassException(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 resolvedResults.

List<object> resolvedResults

The list of resolved results for the token.

Remarks

Initializes a new instance of the ArubaInvalidResolvePassException class.

View Source

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 Source

IndexesOfFailedValues

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>
View Source

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>
View Source

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>

Implements

ISerializable
  • View Source
In this article
Back to top Generated by DocFX