Show / Hide Table of Contents

Class TypeNotFoundEventArgs<T>

Event arguments that can be used when a type could not be resolved or found.

Inheritance
object
TypeNotFoundEventArgs<T>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: SpiceSharp.General
Assembly: SpiceSharp.dll
Syntax
public class TypeNotFoundEventArgs<T>
Type Parameters
Name Description
T

The base type.

Constructors

TypeNotFoundEventArgs(Type)

Initializes a new instance of the TypeNotFoundEventArgs<T> class.

Declaration
public TypeNotFoundEventArgs(Type type)
Parameters
Type Name Description
Type type

The type.

Exceptions
Type Condition
ArgumentNullException

Thrown if type is null.

Properties

Type

Gets the type that could not be found.

Declaration
public Type Type { get; }
Property Value
Type Description
Type

The type.

Value

Gets or sets the value that can fill in the blank.

Declaration
public T Value { get; set; }
Property Value
Type Description
T

Extension Methods

Utility.ThrowIfNull<T>(T, string)
In this article
Back to top Generated by DocFX