TypeDescriptor
describes clr interfaces. Because CLR interfaces can’t have static members this descriptor does not collect any class members
this method is empty because an interface can’t have static members
# File lib/caricature/clr/descriptor.rb, line 61
61: def initialize_class_members_for(klass); end
collects instance members on this interface it will collect properties, methods and property setters
# File lib/caricature/clr/descriptor.rb, line 51
51: def initialize_instance_members_for(klass)
52: clr_type = klass.to_clr_type
53:
54: properties = clr_type.collect_interface_properties
55: methods = clr_type.collect_interface_methods
56:
57: @instance_members = collect_members_from methods, properties
58: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.