Table of Contents

Class ParameterIsReadOnlyException

Namespace
xFunc.Maths.Expressions.Parameters
Assembly
xFunc.Maths.dll

Represents the expression that is thrown when the user tries to change the read-only parameter.

[Serializable]
public class ParameterIsReadOnlyException : Exception, ISerializable
Inheritance
ParameterIsReadOnlyException
Implements
Inherited Members

Constructors

ParameterIsReadOnlyException()

Initializes a new instance of the ParameterIsReadOnlyException class.

public ParameterIsReadOnlyException()

ParameterIsReadOnlyException(string)

Initializes a new instance of the ParameterIsReadOnlyException class.

public ParameterIsReadOnlyException(string message)

Parameters

message string

The message that describes the error.

ParameterIsReadOnlyException(string, Exception)

Initializes a new instance of the ParameterIsReadOnlyException class.

public ParameterIsReadOnlyException(string message, Exception inner)

Parameters

message string

The message.

inner Exception

The inner.

ParameterIsReadOnlyException(string, string)

Initializes a new instance of the ParameterIsReadOnlyException class.

public ParameterIsReadOnlyException(string message, string parameterName)

Parameters

message string

The message.

parameterName string

The parameter name.

ParameterIsReadOnlyException(string, string, Exception?)

Initializes a new instance of the ParameterIsReadOnlyException class.

public ParameterIsReadOnlyException(string message, string parameterName, Exception? inner)

Parameters

message string

The message.

parameterName string

The parameter name.

inner Exception

The inner.

Properties

ParameterName

Gets the parameter name.

public string? ParameterName { get; }

Property Value

string