コード例 #1
0
 /// <summary>
 /// Creates a new <see cref="EventMemberDictionary"/> with the
 /// <paramref name="master"/> and <paramref name="parent"/>
 /// provided.
 /// </summary>
 /// <param name="master">The <see cref="IntermediateFullMemberDictionary"/>
 /// which contains the other members of the <typeparamref name="TIntermediateGenericParameter"/>.</param>
 /// <param name="parent">The parent which contains the <see cref="EventMemberDictionary"/>.</param>
 public EventMemberDictionary(IntermediateFullMemberDictionary master, TIntermediateGenericParameter parent)
     : base(master, parent)
 {
 }
 internal MethodMember(TIntermediateGenericParameter parent)
     : base(parent, parent.Assembly)
 {
 }
コード例 #3
0
 /// <summary>
 /// Creates a new <see cref="MethodMemberDictionary"/> with the
 /// <paramref name="master"/> and <paramref name="parent"/>
 /// provided.
 /// </summary>
 /// <param name="master">The <see cref="IntermediateFullMemberDictionary"/>
 /// which contains the other members of the <typeparamref name="TIntermediateGenericParameter"/>.</param>
 /// <param name="parent">The parent which contains the <see cref="MethodMemberDictionary"/>.</param>
 public MethodMemberDictionary(IntermediateFullMemberDictionary master, TIntermediateGenericParameter parent)
     : base(master, parent, parent.IdentityManager)
 {
 }
 internal MethodMember(string name, TIntermediateGenericParameter parent)
     : base(name, parent, parent.Assembly)
 {
 }
 /// <summary>
 /// Creates a new <see cref="ConstructorMember"/> with the
 /// <paramref name="parent"/> provided.
 /// </summary>
 /// <param name="parent">The <typeparamref name="TIntermediateGenericParameter"/>
 /// in which the <see cref="ConstructorMember"/> is contained.</param>
 public ConstructorMember(TIntermediateGenericParameter parent)
     : base(parent, parent.Assembly)
 {
 }
 /// <summary>
 /// Creates a new <see cref="PropertyMember"/> with the <paramref name="name"/>,
 /// and <paramref name="parent"/> provided.
 /// </summary>
 /// <param name="name">The <see cref="String"/> value that denotes the unique
 /// name of the property.</param>
 /// <param name="parent">The <typeparamref name="TIntermediateGenericParameter"/>
 /// which contains the <see cref="PropertyMember"/>.</param>
 internal PropertyMember(string name, TIntermediateGenericParameter parent)
     : base(name, parent)
 {
 }
 internal IndexerMember(TIntermediateGenericParameter parent, IIntermediateAssembly assembly)
     : base(parent, assembly)
 {
 }
 internal IndexerMember(string name, TIntermediateGenericParameter parent, IIntermediateAssembly assembly)
     : base(name, parent, assembly)
 {
 }