Esempio n. 1
0
 public RQMethodPropertyOrEvent(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName
     ) : base(containingType)
 {
     RqMemberName = memberName;
 }
Esempio n. 2
0
 public RQConstructor(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters
     ) : base(containingType, memberName, typeParameterCount, parameters)
 {
 }
Esempio n. 3
0
 public RQMethodOrProperty(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters
     ) : base(containingType, memberName)
 {
     TypeParameterCount = typeParameterCount;
     Parameters         = new ReadOnlyCollection <RQParameter>(parameters);
 }
Esempio n. 4
0
 public RQMember(RQUnconstructedType containingType)
 {
     ContainingType = containingType;
 }
Esempio n. 5
0
 public RQMemberVariable(RQUnconstructedType containingType, string name)
     : base(containingType)
 {
     this.Name = name;
 }
Esempio n. 6
0
 public RQConstructedType(RQUnconstructedType definingType, IList <RQType> typeArguments)
 {
     DefiningType  = definingType;
     TypeArguments = new ReadOnlyCollection <RQType>(typeArguments);
 }