Наследование: RQTypeOrNamespace
Пример #1
0
 public RQPropertyBase(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters)
     : base(containingType, memberName, typeParameterCount, parameters)
 {
 }
Пример #2
0
 public RQMethodOrProperty(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters)
     : base(containingType, memberName)
 {
     this.TypeParameterCount = typeParameterCount;
     this.Parameters         = new ReadOnlyCollection <RQParameter>(parameters);
 }
Пример #3
0
 public RQMethodPropertyOrEvent(RQUnconstructedType containingType, RQMethodPropertyOrEventName memberName)
     : base(containingType)
 {
     this.RqMemberName = memberName;
 }
Пример #4
0
 public RQConstructedType(RQUnconstructedType definingType, IList <RQType> typeArguments)
 {
     this.DefiningType  = definingType;
     this.TypeArguments = new ReadOnlyCollection <RQType>(typeArguments);
 }
Пример #5
0
 public RQMember(RQUnconstructedType containingType)
 {
     this.ContainingType = containingType;
 }
Пример #6
0
 public RQMemberVariable(RQUnconstructedType containingType, string name)
     : base(containingType)
 {
     this.Name = name;
 }