Smartmobili.Cocoa.NSObjectDecoder.DecodeObjectForKey C# (CSharp) Method

DecodeObjectForKey() public method

public DecodeObjectForKey ( string keyName ) : id
keyName string
return id
        public id DecodeObjectForKey(string keyName)
        {
            id nsObj = null;

            XElement xElm = _classDict.Find(i => (string)i.Attribute("key") == keyName);
            if (xElm != null)
            {
                nsObj = (id)Create(xElm);
            }

            return nsObj;
        }