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


C# RegistrationContext.RemoveKeyIfEmpty方法代码示例

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


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

示例1: Unregister

    public override void Unregister(RegistrationContext context)
    {
      if (context == null)
      {
        return;
      }

      context.RemoveKey(String.Format("{0}\\{1:B}\\{2:B}", EXPRESSION_EVALUATOR_REGISTRY_PATH, _languageGuid, _vendorGuid));
      context.RemoveKeyIfEmpty(String.Format("{0}\\{1:B}", EXPRESSION_EVALUATOR_REGISTRY_PATH, _languageGuid));
    }
开发者ID:rpete4130,项目名称:vsClojure,代码行数:10,代码来源:RegisterExpressionEvaluatorAttribute.cs

示例2: Unregister

        public override void Unregister(RegistrationContext context)
        {
            if (context == null)
            {
                throw new ArgumentNullException("context");
            }

            context.RemoveKey(GetKeyName());

            context.RemoveValue(XmlChooserEditorExtensionsKeyPath, extension);
            context.RemoveKeyIfEmpty(XmlChooserEditorExtensionsKeyPath);
        }
开发者ID:Sunzhuokai,项目名称:VSSDK-Extensibility-Samples,代码行数:12,代码来源:ProvideXmlEditorChooserDesignerViewAttribute.cs

示例3: Unregister

        public override void Unregister( RegistrationContext context )
        {
            foreach( var kvp in Values )
                context.RemoveValue( RelativeKeyPath, kvp.Key );

            context.RemoveKeyIfEmpty( RelativeKeyPath );
        }
开发者ID:aura1213,项目名称:netmf-interpreter,代码行数:7,代码来源:VsProvideExpressLoadKeyAttribute.cs

示例4: Unregister

        /// <include file='doc\ProvideOptionPageAttribute.uex' path='docs/doc[@for="Unregister"]' />
        /// <devdoc>
        /// Called to remove this attribute from the given context.
        /// </devdoc>
        public override void Unregister(RegistrationContext context)
        {
            context.RemoveKey(ToolsOptionsPagesRegKey);

            if (SupportsAutomation)
            {
                context.RemoveKey(AutomationRegKey);
                context.RemoveKeyIfEmpty(AutomationCategoryRegKey);
            }
        }
开发者ID:Graham-Pedersen,项目名称:IronPlot,代码行数:14,代码来源:ProvideOptionPageAttribute.cs

示例5: Unregister

 public override void Unregister(RegistrationContext context)
 {
     context.RemoveValue(this.ProjectRegKey, _valueName);
     context.RemoveKeyIfEmpty(this.ProjectRegKey);
 }
开发者ID:vestild,项目名称:nemerle,代码行数:5,代码来源:ProvideCodeDomProviderAttribute.cs

示例6: Unregister

        /// <summary>
        /// Unregister the custom editor
        /// </summary>
        /// <param name="context"></param>
        public override void Unregister(RegistrationContext context)
        {
            /// Validate parameter input
            if (context == null)
            {
                throw new ArgumentNullException("context");
            }

            /// Remove Key
            context.RemoveKey(Path.Combine(XmlChooserFactory, keyName));
            context.RemoveValue(XmlChooserEditorExtensionsKeyPath, defaultExtension);
            context.RemoveKeyIfEmpty(XmlChooserEditorExtensionsKeyPath);
        }
开发者ID:blackberry,项目名称:VSPlugin,代码行数:17,代码来源:XmlEditorDesignerViewRegistration.cs


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