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

MethodRemoved() private method

private MethodRemoved ( string name ) : void
name string
return void
        internal override void MethodRemoved(string/*!*/ name) {
            Assert.NotNull(name);

            if (IsSingletonClass) {
                Context.Send(ref _singletonMethodRemovedCallbackSite, Symbols.SingletonMethodRemoved, _singletonClassOf, name);
            } else {
                base.MethodRemoved(name);
            }
        }