当前位置: 首页>>代码示例>>C#>>正文


C# PropertyBag.TryGetValue方法代码示例

本文整理汇总了C#中PropertyBag.TryGetValue方法的典型用法代码示例。如果您正苦于以下问题:C# PropertyBag.TryGetValue方法的具体用法?C# PropertyBag.TryGetValue怎么用?C# PropertyBag.TryGetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PropertyBag的用法示例。


在下文中一共展示了PropertyBag.TryGetValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AddTypeToNamespaceNode

        private static void AddTypeToNamespaceNode(PropertyBag node, Type type)
        {
            object value;
            var name = type.GetRootName();
            if (!node.TryGetValue(name, out value))
            {
                node.SetPropertyNoCheck(name, HostType.Wrap(type));
                return;
            }

            var hostType = value as HostType;
            if (hostType != null)
            {
                var types = new[] { type }.Concat(hostType.Types).ToArray();

                var groups = types.GroupBy(testType => testType.GetGenericParamCount()).ToIList();
                if (groups.Any(group => group.Count() > 1))
                {
                    types = groups.Select(ResolveTypeConflict).ToArray();
                }

                node.SetPropertyNoCheck(name, HostType.Wrap(types));
                return;
            }

            if (value is PropertyBag)
            {
                throw new OperationCanceledException(MiscHelpers.FormatInvariant("Type conflicts with namespace at '{0}'", type.GetLocator()));
            }

            throw new OperationCanceledException(MiscHelpers.FormatInvariant("Type conflicts with '{0}' at '{1}'", value.GetFriendlyName(), type.GetLocator()));
        }
开发者ID:sergueik,项目名称:swd-recorder,代码行数:32,代码来源:HostTypeCollection.cs

示例2: GetPropertyInstance

        /// <summary>
        /// Gets the property instance.
        /// </summary>
        /// <param name="propertyBag">The property bag.</param>
        /// <param name="complexProperty">The property instance.</param>
        /// <returns>True if the instance is newly created.</returns>
        private bool GetPropertyInstance(PropertyBag propertyBag, out object complexProperty)
        {
            complexProperty = null;
            if (!propertyBag.TryGetValue(this, out complexProperty) || !this.HasFlag(PropertyDefinitionFlags.ReuseInstance, propertyBag.Owner.Service.RequestedServerVersion))
            {
                complexProperty = this.CreatePropertyInstance(propertyBag.Owner);
                return true;
            }

            return false;
        }
开发者ID:liliankasem,项目名称:ProjectSpikeAPI,代码行数:17,代码来源:ComplexPropertyDefinitionBase.cs


注:本文中的PropertyBag.TryGetValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。