Show / Hide Table of Contents

Class DuplicateActionTypeIdentifierException

An exception that is thrown when multiple action types are associated with the same TypeIdentifier.

Inheritance
Object
Exception
DuplicateActionTypeIdentifierException
Implements
System.Runtime.Serialization.ISerializable
Inherited Members
Exception.GetBaseException()
Exception.GetObjectData(SerializationInfo, StreamingContext)
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
System.Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
System.Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Namespace: Libplanet.Action
Assembly: Libplanet.Action.dll
Syntax
public sealed class DuplicateActionTypeIdentifierException : Exception, ISerializable
Remarks

Note this cannot be serialized as it holds a set of Type objects which are not serializable either.

Constructors

| Improve this Doc View Source

DuplicateActionTypeIdentifierException(String, String, IImmutableSet<Type>)

Creates a new DuplicateActionTypeIdentifierException instance.

Declaration
public DuplicateActionTypeIdentifierException(string message, string typeIdentifier, IImmutableSet<Type> duplicateActionTypes)
Parameters
Type Name Description
String message

Specifies an Message. Note that extra informative text will be appended to this.

String typeIdentifier

The TypeIdentifier string that the duplicateActionTypes are associated with.

IImmutableSet<Type> duplicateActionTypes

The set of multiple action types that are associated with the same typeIdentifier.

Remarks

Note this cannot be serialized as it holds a set of Type objects which are not serializable either.

Properties

| Improve this Doc View Source

DuplicateActionTypes

The set of multiple action types that are associated with the same TypeIdentifier.

Declaration
public IImmutableSet<Type> DuplicateActionTypes { get; }
Property Value
Type Description
IImmutableSet<Type>
Remarks

Note this cannot be serialized as it holds a set of Type objects which are not serializable either.

| Improve this Doc View Source

TypeIdentifier

The TypeIdentifier string that the DuplicateActionTypes are associated with.

Declaration
public string TypeIdentifier { get; }
Property Value
Type Description
String
Remarks

Note this cannot be serialized as it holds a set of Type objects which are not serializable either.

Implements

System.Runtime.Serialization.ISerializable
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2018–2023 Planetarium