IronRuby.Builtins.RubyClass.MethodAdded C# (CSharp) Method

MethodAdded() public method

public MethodAdded ( string name ) : void
name string
return void
        public override void MethodAdded(string/*!*/ name) {
            Assert.NotNull(name);

            // not called on singleton classes:
            if (IsSingletonClass) {
                Context.Send(ref _singletonMethodAddedCallbackSite, Symbols.SingletonMethodAdded, _singletonClassOf, name);
            } else {
                base.MethodAdded(name);
            }
        }