Esempio n. 1
0
 public RQIndexer(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList<RQParameter> parameters)
     : base(containingType, memberName, typeParameterCount, parameters)
 { }
Esempio n. 2
0
 public RQIndexer(
     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)
 {
     this.TypeParameterCount = typeParameterCount;
     this.Parameters = new ReadOnlyCollection<RQParameter>(parameters);
 }
Esempio n. 4
0
 public RQMethodOrProperty(
     RQUnconstructedType containingType,
     RQMethodPropertyOrEventName memberName,
     int typeParameterCount,
     IList <RQParameter> parameters)
     : base(containingType, memberName)
 {
     this.TypeParameterCount = typeParameterCount;
     this.Parameters         = new ReadOnlyCollection <RQParameter>(parameters);
 }
 public RQMethodPropertyOrEvent(RQUnconstructedType containingType, RQMethodPropertyOrEventName memberName)
     : base(containingType)
 {
     this.RqMemberName = memberName;
 }
Esempio n. 6
0
 public RQMethodPropertyOrEvent(RQUnconstructedType containingType, RQMethodPropertyOrEventName memberName)
     : base(containingType)
 {
     this.RqMemberName = memberName;
 }