gpt4 book ai didi

c# - 为什么 NameValueCollection 的行为不同?

转载 作者:行者123 更新时间:2023-11-30 20:28:02 26 4
gpt4 key购买 nike

NameValueCollection x = new NameValueCollection(Request.QueryString);
string x1 = x.ToString();
NameValueCollection y = HttpUtility.ParseQueryString(Request.QueryString.ToString());
string y1 = y.ToString();

当我执行上面的代码时,x1 和 y1 的值变成了

x1="System.Collections.Specialized.NameValueCollection"
y1="abc=1&xyz=2" //url pass to controller is 'localhost/first/getresult/?abc=1&xyz=2'

我不明白为什么x1 和y1 的值不同。我检查了 ParseQueryString() 的文档,它显示它返回 NameValueCollection 而我没有得到任何其他信息。

所以,我不明白为什么 xy 的行为不同。

最佳答案

如果是HttpUtility.ParseQueryString类的实例 HttpValueCollection返回( source )继承自 NameValueCollection。显然,此类重写 ToString 与从对象继承 ToStringNameValueCollection 不同,因此只显示完整类型名称。

ParseQueryString 中没有提及,因为 HttpValueCollection内部。他们不希望你使用这种类型,你不应该依赖这种类型被返回。

这是 source HttpValueCollection 中的 ToString:

public override String ToString() {
return ToString(true);
}

internal virtual String ToString(bool urlencoded) {
return ToString(urlencoded, null);
}

internal virtual String ToString(bool urlencoded, IDictionary excludeKeys) {
int n = Count;
if (n == 0)
return String.Empty;

StringBuilder s = new StringBuilder();
String key, keyPrefix, item;
bool ignoreViewStateKeys = (excludeKeys != null && excludeKeys[Page.ViewStateFieldPrefixID] != null);

for (int i = 0; i < n; i++) {
key = GetKey(i);

// Review: improve this... Special case hack for __VIEWSTATE#
if (ignoreViewStateKeys && key != null && key.StartsWith(Page.ViewStateFieldPrefixID, StringComparison.Ordinal)) continue;
if (excludeKeys != null && key != null && excludeKeys[key] != null)
continue;
if (urlencoded)
key = UrlEncodeForToString(key);
keyPrefix = (key != null) ? (key + "=") : String.Empty;

string[] values = GetValues(i);

if (s.Length > 0)
s.Append('&');

if (values == null || values.Length == 0) {
s.Append(keyPrefix);
}
else if (values.Length == 1) {
s.Append(keyPrefix);
item = values[0];
if (urlencoded)
item = UrlEncodeForToString(item);
s.Append(item);
}
else {
for (int j = 0; j < values.Length; j++) {
if (j > 0)
s.Append('&');
s.Append(keyPrefix);
item = values[j];
if (urlencoded)
item = UrlEncodeForToString(item);
s.Append(item);
}
}
}

return s.ToString();
}

关于c# - 为什么 NameValueCollection 的行为不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47905788/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com