Show / Hide Table of Contents

Class ArgumentInfo<T>

Represent a function argument to validate

Inheritance
System.Object
ArgumentInfo<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OfficeOpenXml.FormulaParsing.Utilities
Assembly: EPPlus.dll
Syntax
public class ArgumentInfo<T>
Type Parameters
Name Description
T

Type of the argument to validate

Constructors

ArgumentInfo(T)

Constructor

Declaration
public ArgumentInfo(T val)
Parameters
Type Name Description
T val

The argument to validate

Properties

Name

Variable name of the argument

Declaration
public string Name { get; }
Property Value
Type Description
System.String

Value

The argument to validate

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

Methods

Named(String)

Sets the variable name of the argument.

Declaration
public ArgumentInfo<T> Named(string argName)
Parameters
Type Name Description
System.String argName

The name

Returns
Type Description
ArgumentInfo<T>
Back to top Generated by DocFX