本文整理汇总了C#中System.Collections.Specialized.NameValueCollection.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# NameValueCollection.GetType方法的具体用法?C# NameValueCollection.GetType怎么用?C# NameValueCollection.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Collections.Specialized.NameValueCollection
的用法示例。
在下文中一共展示了NameValueCollection.GetType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SetReadonly
private void SetReadonly(NameValueCollection collection, bool readOnly)
{
var readOnlyProperty = collection.GetType().GetProperty("IsReadOnly", BindingFlags.NonPublic | BindingFlags.Instance);
if(readOnlyProperty != null)
{
readOnlyProperty.SetValue(collection, readOnly, null);
}
}
示例2: MakeWritable
/// <summary>
/// Forces the <see cref="T:NameValueCollection"/> to allow modifications by using reflection to
/// set the IsReadOnly property to false.
/// </summary>
/// <param name="collection">The collection to make writable.</param>
/// <returns>The original collection after the IsReadOnly property has been hacked.</returns>
private static NameValueCollection MakeWritable(NameValueCollection collection)
{
var collectionType = collection.GetType();
var isReadOnlyProperty = collectionType.GetProperty(
"IsReadOnly",
BindingFlags.Instance |
BindingFlags.IgnoreCase |
BindingFlags.NonPublic
);
isReadOnlyProperty.SetValue(collection, false, null);
return collection;
}