Show / Hide Table of Contents

Class MemberBuildInfo<T>

Base class containing shared information for building a class member.

Inheritance
object
MemberBuildInfo<T>
MethodBuildInfo
PropertyBuildInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: TheXDS.MCART.Types
Assembly: MCART.TypeFactory.dll
Syntax
public abstract class MemberBuildInfo<T> where T : MemberInfo
Type Parameters
Name Description
T
Remarks

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

Constructors

| Edit this page View Source

MemberBuildInfo(TypeBuilder, T)

Base class containing shared information for building a class member.

Declaration
protected MemberBuildInfo(TypeBuilder typeBuilder, T member)
Parameters
Type Name Description
TypeBuilder typeBuilder

TypeBuilder in which this member was defined.

T member

Reference to the member that has been defined.

Remarks

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

Properties

| Edit this page View Source

Member

Reference to the MemberInfo used to build this member.

Declaration
public T Member { get; }
Property Value
Type Description
T
| Edit this page View Source

TypeBuilder

Reference to the TypeBuilder where this member was defined.

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

Operators

| Edit this page View Source

implicit operator T(MemberBuildInfo<T>)

Implicitly converts a MemberBuildInfo<T> to its underlying member.

Declaration
public static implicit operator T(MemberBuildInfo<T> buildInfo)
Parameters
Type Name Description
MemberBuildInfo<T> buildInfo

MemberBuildInfo<T> from which to extract the member.

Returns
Type Description
T

Extension Methods

Objects.ShallowCopyTo(object, object, Type)
ObjectExtensions.FieldsOf<T>(object)
ObjectExtensions.GetAttribute<T>(object)
ObjectExtensions.GetAttributes<T>(object)
ObjectExtensions.HasAttrValue<TAttribute, TValue>(object, out TValue)
ObjectExtensions.HasAttribute<T>(object)
ObjectExtensions.HasAttribute<T>(object, out T?)
ObjectExtensions.HasAttributes<T>(object, out IEnumerable<T>?)
ObjectExtensions.Is(object?, object?)
ObjectExtensions.IsEither(object, IEnumerable)
ObjectExtensions.IsEither(object, params object[])
ObjectExtensions.IsNeither(object, IEnumerable)
ObjectExtensions.IsNeither(object, params object[])
ObjectExtensions.IsNot(object?, object?)
ObjectExtensions.PropertiesOf<T>(object)
ObjectExtensions.WhichAre(object, IEnumerable<object>)
ObjectExtensions.WhichAre(object, params object[])
Common.IfNotNull<T>(T?, Action<T>)
Objects.Itself<T>(T)
Objects.ShallowCopyTo<T>(T, T)
CollectionExtensions.PushInto<TItem, TCollection>(TItem, ICollection<TCollection>)
DictionaryExtensions.PushInto<TKey, TValue>(TValue, TKey, IDictionary<TKey, TValue>)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX