KNFoundation.KNBundle.ParseBundleInfoPlist C# (CSharp) Method

ParseBundleInfoPlist() private method

private ParseBundleInfoPlist ( ) : object>.Dictionary
return object>.Dictionary
        private Dictionary<string, object> ParseBundleInfoPlist()
        {
            string infoPath = PathForResourceOfType("Info", "plist");

            if (!String.IsNullOrEmpty(infoPath) && File.Exists(infoPath)) {

                try {
                    return KNPropertyListSerialization.PropertyListWithData(File.ReadAllBytes(infoPath));
                } catch {
                }
            }
            return new Dictionary<string, object>();
        }