1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
|
//
// System.Reflection.MonoGenericClass
//
// Sean MacIsaac (macisaac@ximian.com)
// Paolo Molaro (lupus@ximian.com)
// Patrik Torstensson (patrik.torstensson@labs2.com)
//
// (C) 2001 Ximian, Inc.
//
//
// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.Reflection;
using System.Reflection.Emit;
using System.Collections;
using System.Runtime.CompilerServices;
using System.Globalization;
using System.Runtime.Serialization;
using System.Text;
#if NET_2_0 || BOOTSTRAP_NET_2_0
namespace System.Reflection
{
/*
* MonoGenericClass represents an instantiation of a generic TypeBuilder. MS
* calls this class TypeBuilderInstantiation (a much better name). MS returns
* NotImplementedException for many of the methods but we can't do that as gmcs
* depends on them.
*/
internal class MonoGenericClass : MonoType
{
#region Keep in sync with object-internals.h
#pragma warning disable 649
internal TypeBuilder generic_type;
Type[] type_arguments;
bool initialized;
#pragma warning restore 649
#endregion
Hashtable fields, ctors, methods;
int event_count;
internal MonoGenericClass ()
: base (null)
{
// this should not be used
throw new InvalidOperationException ();
}
internal MonoGenericClass (TypeBuilder tb, Type[] args) : base (null)
{
this.generic_type = tb;
this.type_arguments = args;
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
extern void initialize (MethodInfo[] methods, ConstructorInfo[] ctors, FieldInfo[] fields, PropertyInfo[] properties, EventInfo[] events);
private const BindingFlags flags = BindingFlags.Public | BindingFlags.NonPublic |
BindingFlags.Static | BindingFlags.Instance | BindingFlags.DeclaredOnly;
void initialize ()
{
if (initialized)
return;
MonoGenericClass parent = GetParentType () as MonoGenericClass;
if (parent != null)
parent.initialize ();
EventInfo[] events = generic_type.GetEvents_internal (flags);
event_count = events.Length;
initialize (generic_type.GetMethods (flags),
generic_type.GetConstructorsInternal (flags),
generic_type.GetFields (flags),
generic_type.GetProperties (flags),
events);
initialized = true;
}
Type GetParentType ()
{
return InflateType (generic_type.BaseType);
}
internal Type InflateType (Type type)
{
return InflateType (type, null);
}
internal Type InflateType (Type type, Type[] method_args)
{
if (type == null)
return null;
if (!type.IsGenericParameter && !type.ContainsGenericParameters)
return type;
if (type.IsGenericParameter) {
if (type.DeclaringMethod == null)
return type_arguments [type.GenericParameterPosition];
if (method_args != null)
return method_args [type.GenericParameterPosition];
return type;
}
if (type.IsPointer)
return InflateType (type.GetElementType (), method_args).MakePointerType ();
if (type.IsByRef)
return InflateType (type.GetElementType (), method_args).MakeByRefType ();
if (type.IsArray) {
if (type.GetArrayRank () > 1)
return InflateType (type.GetElementType (), method_args).MakeArrayType (type.GetArrayRank ());
#if BOOTSTRAP_NET_2_0
if (type.ToString ().EndsWith ("[*]"))
#else
if (type.ToString ().EndsWith ("[*]", StringComparison.Ordinal)) /*FIXME, the reflection API doesn't offer a way around this*/
#endif
return InflateType (type.GetElementType (), method_args).MakeArrayType (1);
return InflateType (type.GetElementType (), method_args).MakeArrayType ();
}
Type[] args = type.GetGenericArguments ();
for (int i = 0; i < args.Length; ++i)
args [i] = InflateType (args [i], method_args);
Type gtd = type.IsGenericTypeDefinition ? type : type.GetGenericTypeDefinition ();
return gtd.MakeGenericType (args);
}
public override Type BaseType {
get {
Type parent = GetParentType ();
return parent != null ? parent : generic_type.BaseType;
}
}
Type[] GetInterfacesInternal ()
{
if (generic_type.interfaces == null)
return new Type [0];
Type[] res = new Type [generic_type.interfaces.Length];
for (int i = 0; i < res.Length; ++i)
res [i] = InflateType (generic_type.interfaces [i]);
return res;
}
public override Type[] GetInterfaces ()
{
if (!generic_type.IsCompilerContext)
throw new NotSupportedException ();
return GetInterfacesInternal ();
}
protected override bool IsValueTypeImpl ()
{
return generic_type.IsValueType;
}
internal override MethodInfo GetMethod (MethodInfo fromNoninstanciated)
{
initialize ();
if (!(fromNoninstanciated is MethodBuilder))
throw new InvalidOperationException ("Inflating non MethodBuilder objects is not supported: " + fromNoninstanciated.GetType ());
MethodBuilder mb = (MethodBuilder)fromNoninstanciated;
if (methods == null)
methods = new Hashtable ();
if (!methods.ContainsKey (mb))
methods [mb] = new MethodOnTypeBuilderInst (this, mb);
return (MethodInfo)methods [mb];
}
internal override ConstructorInfo GetConstructor (ConstructorInfo fromNoninstanciated)
{
initialize ();
if (!(fromNoninstanciated is ConstructorBuilder))
throw new InvalidOperationException ("Inflating non ConstructorBuilder objects is not supported: " + fromNoninstanciated.GetType ());
ConstructorBuilder cb = (ConstructorBuilder)fromNoninstanciated;
if (ctors == null)
ctors = new Hashtable ();
if (!ctors.ContainsKey (cb))
ctors [cb] = new ConstructorOnTypeBuilderInst (this, cb);
return (ConstructorInfo)ctors [cb];
}
internal override FieldInfo GetField (FieldInfo fromNoninstanciated)
{
initialize ();
if (!(fromNoninstanciated is FieldBuilder))
throw new InvalidOperationException ("Inflating non FieldBuilder objects is not supported: " + fromNoninstanciated.GetType ());
FieldBuilder fb = (FieldBuilder)fromNoninstanciated;
if (fields == null)
fields = new Hashtable ();
if (!fields.ContainsKey (fb))
fields [fb] = new FieldOnTypeBuilderInst (this, fb);
return (FieldInfo)fields [fb];
}
public override MethodInfo[] GetMethods (BindingFlags bf)
{
if (!generic_type.IsCompilerContext)
throw new NotSupportedException ();
ArrayList l = new ArrayList ();
//
// Walk up our class hierarchy and retrieve methods from our
// parent classes.
//
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetMethodsInternal (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetMethods (bf));
else {
// If we encounter a `MonoType', its
// GetMethodsByName() will return all the methods
// from its parent type(s), so we can stop here.
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetMethodsByName (null, bf, false, this));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
MethodInfo[] result = new MethodInfo [l.Count];
l.CopyTo (result);
return result;
}
MethodInfo[] GetMethodsInternal (BindingFlags bf, MonoGenericClass reftype)
{
if (generic_type.num_methods == 0)
return new MethodInfo [0];
ArrayList l = new ArrayList ();
bool match;
MethodAttributes mattrs;
MethodInfo accessor;
initialize ();
for (int i = 0; i < generic_type.num_methods; ++i) {
MethodInfo c = generic_type.methods [i];
match = false;
mattrs = c.Attributes;
if ((mattrs & MethodAttributes.MemberAccessMask) == MethodAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((mattrs & MethodAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
c = TypeBuilder.GetMethod (this, c);
l.Add (c);
}
MethodInfo[] result = new MethodInfo [l.Count];
l.CopyTo (result);
return result;
}
public override ConstructorInfo[] GetConstructors (BindingFlags bf)
{
if (!generic_type.IsCompilerContext)
throw new NotSupportedException ();
ArrayList l = new ArrayList ();
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetConstructorsInternal (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetConstructors (bf));
else {
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetConstructors_internal (bf, this));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
ConstructorInfo[] result = new ConstructorInfo [l.Count];
l.CopyTo (result);
return result;
}
ConstructorInfo[] GetConstructorsInternal (BindingFlags bf, MonoGenericClass reftype)
{
if (generic_type.ctors == null)
return new ConstructorInfo [0];
ArrayList l = new ArrayList ();
bool match;
MethodAttributes mattrs;
initialize ();
for (int i = 0; i < generic_type.ctors.Length; i++) {
ConstructorInfo c = generic_type.ctors [i];
match = false;
mattrs = c.Attributes;
if ((mattrs & MethodAttributes.MemberAccessMask) == MethodAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((mattrs & MethodAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (TypeBuilder.GetConstructor (this, c));
}
ConstructorInfo[] result = new ConstructorInfo [l.Count];
l.CopyTo (result);
return result;
}
public override FieldInfo[] GetFields (BindingFlags bf)
{
if (!generic_type.IsCompilerContext)
throw new NotSupportedException ();
ArrayList l = new ArrayList ();
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetFieldsInternal (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetFields (bf));
else {
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetFields_internal (bf, this));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
FieldInfo[] result = new FieldInfo [l.Count];
l.CopyTo (result);
return result;
}
FieldInfo[] GetFieldsInternal (BindingFlags bf, MonoGenericClass reftype)
{
if (generic_type.num_fields == 0)
return new FieldInfo [0];
ArrayList l = new ArrayList ();
bool match;
FieldAttributes fattrs;
initialize ();
for (int i = 0; i < generic_type.num_fields; i++) {
FieldInfo c = generic_type.fields [i];
match = false;
fattrs = c.Attributes;
if ((fattrs & FieldAttributes.FieldAccessMask) == FieldAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((fattrs & FieldAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (TypeBuilder.GetField (this, c));
}
FieldInfo[] result = new FieldInfo [l.Count];
l.CopyTo (result);
return result;
}
public override PropertyInfo[] GetProperties (BindingFlags bf)
{
if (!generic_type.IsCompilerContext)
throw new NotSupportedException ();
ArrayList l = new ArrayList ();
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetPropertiesInternal (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetProperties (bf));
else {
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetPropertiesByName (null, bf, false, this));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
PropertyInfo[] result = new PropertyInfo [l.Count];
l.CopyTo (result);
return result;
}
PropertyInfo[] GetPropertiesInternal (BindingFlags bf, MonoGenericClass reftype)
{
if (generic_type.properties == null)
return new PropertyInfo [0];
ArrayList l = new ArrayList ();
bool match;
MethodAttributes mattrs;
MethodInfo accessor;
initialize ();
foreach (PropertyInfo pinfo in generic_type.properties) {
match = false;
accessor = pinfo.GetGetMethod (true);
if (accessor == null)
accessor = pinfo.GetSetMethod (true);
if (accessor == null)
continue;
mattrs = accessor.Attributes;
if ((mattrs & MethodAttributes.MemberAccessMask) == MethodAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((mattrs & MethodAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (new PropertyOnTypeBuilderInst (reftype, pinfo));
}
PropertyInfo[] result = new PropertyInfo [l.Count];
l.CopyTo (result);
return result;
}
public override EventInfo[] GetEvents (BindingFlags bf)
{
if (!generic_type.IsCompilerContext)
throw new NotSupportedException ();
ArrayList l = new ArrayList ();
Type current_type = this;
do {
MonoGenericClass gi = current_type as MonoGenericClass;
if (gi != null)
l.AddRange (gi.GetEventsInternal (bf, this));
else if (current_type is TypeBuilder)
l.AddRange (current_type.GetEvents (bf));
else {
MonoType mt = (MonoType) current_type;
l.AddRange (mt.GetEvents (bf));
break;
}
if ((bf & BindingFlags.DeclaredOnly) != 0)
break;
current_type = current_type.BaseType;
} while (current_type != null);
EventInfo[] result = new EventInfo [l.Count];
l.CopyTo (result);
return result;
}
EventInfo[] GetEventsInternal (BindingFlags bf, MonoGenericClass reftype) {
if (generic_type.events == null)
return new EventInfo [0];
initialize ();
ArrayList l = new ArrayList ();
bool match;
MethodAttributes mattrs;
MethodInfo accessor;
for (int i = 0; i < event_count; ++i) {
EventBuilder ev = generic_type.events [i];
match = false;
accessor = ev.add_method;
if (accessor == null)
accessor = ev.remove_method;
if (accessor == null)
continue;
mattrs = accessor.Attributes;
if ((mattrs & MethodAttributes.MemberAccessMask) == MethodAttributes.Public) {
if ((bf & BindingFlags.Public) != 0)
match = true;
} else {
if ((bf & BindingFlags.NonPublic) != 0)
match = true;
}
if (!match)
continue;
match = false;
if ((mattrs & MethodAttributes.Static) != 0) {
if ((bf & BindingFlags.Static) != 0)
match = true;
} else {
if ((bf & BindingFlags.Instance) != 0)
match = true;
}
if (!match)
continue;
l.Add (new EventOnTypeBuilderInst (this, ev));
}
EventInfo[] result = new EventInfo [l.Count];
l.CopyTo (result);
return result;
}
public override Type[] GetNestedTypes (BindingFlags bf)
{
return generic_type.GetNestedTypes (bf);
}
public override bool IsAssignableFrom (Type c)
{
if (c == this)
return true;
Type[] interfaces = GetInterfacesInternal ();
if (c.IsInterface) {
if (interfaces == null)
return false;
foreach (Type t in interfaces)
if (c.IsAssignableFrom (t))
return true;
return false;
}
Type parent = GetParentType ();
if (parent == null)
return c == typeof (object);
else
return c.IsAssignableFrom (parent);
}
public override Type UnderlyingSystemType {
get { return this; }
}
public override string Name {
get { return generic_type.Name; }
}
public override string Namespace {
get { return generic_type.Namespace; }
}
public override string FullName {
get { return format_name (true, false); }
}
public override string AssemblyQualifiedName {
get { return format_name (true, true); }
}
public override Guid GUID {
get { throw new NotSupportedException (); }
}
string format_name (bool full_name, bool assembly_qualified)
{
StringBuilder sb = new StringBuilder (generic_type.FullName);
bool compiler_ctx = generic_type.IsCompilerContext;
sb.Append ("[");
for (int i = 0; i < type_arguments.Length; ++i) {
if (i > 0)
sb.Append (",");
string name = full_name ? type_arguments [i].AssemblyQualifiedName : type_arguments [i].ToString ();
if (name == null) {
if (compiler_ctx && type_arguments [i].IsGenericParameter)
name = type_arguments [i].Name;
else
return null;
}
if (full_name)
sb.Append ("[");
sb.Append (name);
if (full_name)
sb.Append ("]");
}
sb.Append ("]");
if (assembly_qualified) {
sb.Append (", ");
sb.Append (generic_type.Assembly.FullName);
}
return sb.ToString ();
}
public override string ToString ()
{
return format_name (false, false);
}
public override Type MakeArrayType ()
{
return new ArrayType (this, 0);
}
public override Type MakeArrayType (int rank)
{
if (rank < 1)
throw new IndexOutOfRangeException ();
return new ArrayType (this, rank);
}
public override Type MakeByRefType ()
{
return new ByRefType (this);
}
public override Type MakePointerType ()
{
return new PointerType (this);
}
/*public override Type GetElementType ()
{
throw new NotSupportedException ();
}*/
protected override bool IsCOMObjectImpl ()
{
return false;
}
protected override bool IsPrimitiveImpl ()
{
return false;
}
/*
protected override bool IsArrayImpl ()
{
return false;
}
protected override bool IsByRefImpl ()
{
return false;
}
protected override bool IsPointerImpl ()
{
return false;
}*/
protected override TypeAttributes GetAttributeFlagsImpl ()
{
return generic_type.Attributes;
}
//stuff that throws
public override Type GetInterface (string name, bool ignoreCase)
{
throw new NotSupportedException ();
}
public override EventInfo GetEvent (string name, BindingFlags bindingAttr)
{
if (!generic_type.IsCompilerContext)
throw new NotSupportedException ();
foreach (var evt in GetEvents (bindingAttr)) {
if (evt.Name == name)
return evt;
}
return null;
}
public override FieldInfo GetField( string name, BindingFlags bindingAttr)
{
throw new NotSupportedException ();
}
public override MemberInfo[] GetMembers (BindingFlags bindingAttr)
{
throw new NotSupportedException ();
}
public override Type GetNestedType (string name, BindingFlags bindingAttr)
{
throw new NotSupportedException ();
}
public override object InvokeMember (string name, BindingFlags invokeAttr,
Binder binder, object target, object[] args,
ParameterModifier[] modifiers,
CultureInfo culture, string[] namedParameters)
{
throw new NotSupportedException ();
}
protected override MethodInfo GetMethodImpl (string name, BindingFlags bindingAttr, Binder binder,
CallingConventions callConvention, Type[] types,
ParameterModifier[] modifiers)
{
throw new NotSupportedException ();
}
protected override PropertyInfo GetPropertyImpl (string name, BindingFlags bindingAttr, Binder binder,
Type returnType, Type[] types, ParameterModifier[] modifiers)
{
throw new NotSupportedException ();
}
protected override ConstructorInfo GetConstructorImpl (BindingFlags bindingAttr,
Binder binder,
CallingConventions callConvention,
Type[] types,
ParameterModifier[] modifiers)
{
throw new NotSupportedException ();
}
//MemberInfo
public override bool IsDefined (Type attributeType, bool inherit)
{
throw new NotSupportedException ();
}
public override object [] GetCustomAttributes (bool inherit)
{
throw new NotSupportedException ();
}
public override object [] GetCustomAttributes (Type attributeType, bool inherit)
{
throw new NotSupportedException ();
}
}
}
#endif
|