protected override object GetMissingPropertyValue(string jsPropertyName)
        {
            if (RealObject.ContainsKey(jsPropertyName))
            {
                return(Page.ScriptMarshaller.Wrap(RealObject[jsPropertyName]));
            }

            return(base.GetMissingPropertyValue(jsPropertyName));
        }
Beispiel #2
0
 public virtual bool ContainsKey(TGroup group) => RealObject.ContainsKey(group);
 public virtual bool ContainsKey(TGroup group)
 {
     return(RealObject.ContainsKey(group));
 }