• Home
  • API
  • Change Log
  • Github

    Show / Hide Table of Contents
    • DotNetHelper.FastMember.Extension
      • ExtFastMember
      • ObjectMapper
    • DotNetHelper.FastMember.Extension.Exceptions
      • PropertyMapException
    • DotNetHelper.FastMember.Extension.Extension
      • FastMemberExtension
    • DotNetHelper.FastMember.Extension.Helpers
      • DynamicObjectHelper
      • New<T>
    • DotNetHelper.FastMember.Extension.Models
      • MemberWrapper

    Class PropertyMapException

    Custom Exception that lets the user know a code change is required to fix this error

    Inheritance
    Object
    Exception
    PropertyMapException
    Implements
    ISerializable
    _Exception
    Inherited Members
    Exception.GetBaseException()
    Exception.ToString()
    Exception.GetObjectData(SerializationInfo, StreamingContext)
    Exception.GetType()
    Exception.Message
    Exception.Data
    Exception.InnerException
    Exception.TargetSite
    Exception.StackTrace
    Exception.HelpLink
    Exception.Source
    Exception.HResult
    Exception.SerializeObjectState
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.MemberwiseClone()
    Namespace: DotNetHelper.FastMember.Extension.Exceptions
    Assembly: DotNetHelper.FastMember.Extension.dll
    Syntax
    [Serializable]
    public class PropertyMapException : Exception, ISerializable, _Exception

    Constructors

    | Improve this Doc View Source

    PropertyMapException()

    Just create the exception

    Declaration
    public PropertyMapException()
    | Improve this Doc View Source

    PropertyMapException(SerializationInfo, StreamingContext)

    Create the exception from serialized data. Usual scenario is when exception is occured somewhere on the remote workstation and we have to re-create/re-throw the exception on the local machine

    Declaration
    protected PropertyMapException(SerializationInfo info, StreamingContext context)
    Parameters
    Type Name Description
    SerializationInfo info

    Serialization info

    StreamingContext context

    Serialization context

    | Improve this Doc View Source

    PropertyMapException(String)

    Create the exception with description

    Declaration
    public PropertyMapException(string message)
    Parameters
    Type Name Description
    String message

    Exception description

    | Improve this Doc View Source

    PropertyMapException(String, Exception)

    Create the exception with description and inner cause

    Declaration
    public PropertyMapException(string message, Exception innerException)
    Parameters
    Type Name Description
    String message

    Exception description

    Exception innerException

    Exception inner cause

    Implements

    System.Runtime.Serialization.ISerializable
    System.Runtime.InteropServices._Exception

    Extension Methods

    FastMemberExtension.GetPrivateField<T>(Object, String)
    FastMemberExtension.GetPrivateProperty<T>(Object, String)
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Joseph McNeal Jr