问题标签 [configurationelement]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
248 浏览

c# - 当绑定的 ConfigurationElement 的属性发生更改时,ListView.SelectedItem 不会更改

我有一个派生自ConfigurationElement以下的类:

我有一个包含 a 的视图ListView,如下所示:

视图的 ViewModel 如下:

whereObservant是实现INotifyPropertyChanged.

在 中选择一个项目后ListView,我通过SelectedItem属性更新了 ViewModel 中的项目(通过单击 Modify 按钮),并且进展顺利。但是,当我在修改当前项目后尝试选择另一个项目时,当前项目不会被取消选择,如下所示:

在此处输入图像描述

我知道Item与使用字段的实现相比,属性 getter 和 setter 的实现不同。它是这样实现的,因为Item它是从配置文件加载/持久化到配置文件的配置的一部分。

我的问题是:是否可以在不使用使用字段的 getter/setter 的情况下纠正这个问题?

0 投票
1 回答
512 浏览

c# - ConfigurationElement 设置 null 默认值

我对 App.config 中的自定义配置部分有一个小问题。问题是:我有一个CustomElement(我们称之为'a'),它的属性CustomElement 是另一个(我们称之为'b')。

我希望只有在指定为辅助元素时才将 b 作为值而不是 null 。

例如

在这种情况下,我有 ab 不为空,这没关系。

但是,在以下情况下,b 应该为 null,但事实并非如此。

在情况 2 中是否可以有一个空值?

感谢所有愿意帮助我的人。

在这种情况下,ErrorCfg 不为空,但 Prop1 和 Pro2 为空字符串

0 投票
1 回答
344 浏览

automapper - 使用 AutoMapper 映射列表 to ConfigurationElementCollection

I am having a bit of a problem using AutoMapper with some Configuration Elements. I have the following classes:

public class SocialLinkSettingConfiguration : Co

I am having a bit of a problem using AutoMapper with some Configuration Elements. I have the following classes:

I can create a mapping between SocialLinkSetting and SocialLinkSettingConfiguration just fine. However, when I am trying to convert a list of SocialLinkSetting to SocialLinkSettingConfigurationCollection, I fail every time.

What I am trying to do is take a list of Social Links, and convert it to a single SocialLinkSettingConfigurationCollection object that has all of the SocialLinkSetting inside and converted to SocialLinkSettingConfiguration.

I can't seem to do this. Each time, it doesn't know how to convert List to the SocialLinkSettingConfigurationCollection, then add each of the items.

Any help would be greatly appreciated.

Thanks, Ben


(one line if) ? bool is true - give me string

I can't wrap by head around this even though I've read many stackoverflow threads.

I check if the page has a specific property value like so:

I want to transform this into a one-line if statement so I can parse a string to a class like illustrated below:

PS: I apologize for the missing logic behind my thoughts/goal. I'm new at programming.

0 投票
1 回答
115 浏览

c# - SVCEditor 中的 WCF BehaviorExtensionElement 嵌套属性

我为自定义消息创建了 CustomBehaviorExtensionElement 和 CustomEndpointBehavior。

但在 SVCEditor 中,我看不到 X509CertificateConfigurationElement 类的嵌套属性。SVCEditor 只显示类型名称,但我希望嵌套属性 findValue、storeLocation、storeName、x509FindType。 这里的例子 我做错了什么?感谢您的回答。

0 投票
1 回答
784 浏览

c# - 在 app.config 中获取 ConfigurationElement 父级

我创建了一个自定义ConfigurationSection,对于我的app.configConfigurationElement(s),它基于此文档ConfigurationElementCollection(s)

现在我希望能够访问任何配置元素中的父元素。
例如以下行中的内容:

ConfigurationElement类中是否有我遗漏的东西可以让我做到这一点?

我希望是否可以通过某种通用解决方案来实现这一目标;
不需要Parent在每个元素上引入属性之类的东西,然后需要在每个ConfigurationPropertygetter 中分配该属性值。

0 投票
0 回答
13 浏览

c# - Unbale 从 .Net 5 中的 App.Config 文件中读取自定义部分

我正在使用 NUnit 和 Selenium

我在 App.Config 中创建了一个自定义配置部分

要阅读此配置,我已添加到

我已经完全一样了:https ://ivankahl.com/creating-custom-configuration-sections-in-app-config/

但是,当我阅读的每个部分时,我都变得空了。

.net5 包或 NuGet 是否有任何修复

提前致谢。