Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
6k views

Make NameValueCollection accessible to LINQ Query

How to make NameValueCollection accessible to LINQ query operator such as where, join, groupby? I tried the below: private NameValueCollection RequestFields() { NameValueCollection nvc = new ...
8
votes
3answers
5k views

NameValueCollection vs Dictionary<string,string> [closed]

Possible Duplicate: IDictionary<string, string> or NameValueCollection Any reason I should use Dictionary<string,string> instead of NameValueCollection? (in C# / .NET Framework) ...
6
votes
5answers
2k views

C# Iterate through NameValueCollection

I have a NameValueCollection, and want to iterate through the values. Currently, I’m doing this, but it seems like there should be a neater way to do it: NameValueCollection nvc = new ...
6
votes
2answers
2k views

Is there any easy way to sort NameValueCollection on the basis of key in C#?

I am looking for an easy way to sort NameValueCollection on the basis of key - it should not be a performance heavy though.
6
votes
5answers
6k views

Bind NameValueCollection to GridView?

What kind of collection I should use to convert NameValue collection to be bindable to GridView? When doing directly it didn't work. Code in aspx.cs private void BindList(NameValueCollection ...
5
votes
3answers
1k views

Reverse function of HttpUtility.ParseQueryString

.Net's System.Web.HttpUtility class defines the following function to parse a query string into a NameValueCollection: public static NameValueCollection ParseQueryString(string query); Is there any ...
4
votes
4answers
5k views

XML serialization of a collection in C#

I have two classes as follows: public class Info { [XmlAttribute] public string language; public int version; public Book book; public Info() { } ...
3
votes
4answers
714 views

NameValueCollection to URL Query?

I know i can do this var nv = HttpUtility.ParseQueryString(req.RawUrl); But is there a way to convert this back to a url? var newUrl = HttpUtility.Something("/page", nv);
3
votes
3answers
818 views

Efficient searching of NameValueCollection

Is there a way to pull out keys from a NameValueCollection that pertain to a certain pattern/naming convention without having to iterate through every value in the collection?
2
votes
1answer
583 views

Convert DataRowCollection to NameValueCollection

I need an elegant way to convert a DataRowCollection to a NameValueCollection. note: during the conversion I need a section where I can invoke an inflector to tidy up key names
2
votes
4answers
169 views

How to set the length of NameValueCollection

I am a newbie in C# (not in programming). Please, what is the simplest way to decrease items count in NameValueCollection object? For example I have 13 name-value pairs in collection and I want to cut ...
2
votes
1answer
269 views

Can a freemarker interpolation contain an interpolation?

Let's say I have Freemarker variable A that contains the name of another variable on the hash tree, say. "B." I'd like to use a to read the value of B so, for example, if B contained "C" I could tell ...
2
votes
1answer
266 views

Can't resolve NameValueCollection with Autofac

I am using Autofac 2.1.12 to handle my dependency injection, and am having trouble with one specific issue. I can't seem to resolve a NameValueCollection dependency. Consider the following code ...
2
votes
1answer
220 views

What happens behind the scenes during deserialization of a NameValueCollection?

What's going on behind the scenes in .NET (de)serialization that makes it behave the way it does in the following scenario? (This is a test app that just illustrates my setup.) I have a class with a ...
1
vote
1answer
71 views

Sorting a NameValueCollection by value in c#

I have a NameValueCollection and I would like to sort this on his value. Does anyone got some ideas how to do this easely? I was thinking to wrap it into a SortedList or SortedDictionairy but I'm not ...
1
vote
0answers
75 views

Static Objects | Custom ConfigurationManager for Environment Independent Web.config

I am working on a typical .net web app which is first deployed at test environment - ENV- T and then after complete testing it is moved to Production ENV - P. Our hosting provider will not deploy ...
1
vote
4answers
230 views

Get all values of a NameValueCollection to a string

this should be realy easy, but it seems i dont manage to do it. i have the following code: string Keys = string.Join(",",FormValues.AllKeys); i was trying to play around with the get: string ...
1
vote
1answer
159 views

NameValueCollection to string? Help

The service I've written waits for requests and when one arrives it extracts the querystring, parses it and saves the values in database. However, for some odd reason I cannot use the ...
1
vote
1answer
113 views

How do I update an objects parameters from a NameValueCollection (or similar)?

I am trying to update public parameters of a known type MyClass from a NameValueCollection (see code below). This is possible in MVC3, the Controller class has an UpdateModel method which does exactly ...
1
vote
2answers
250 views

sorting a namevaluecollection

How do I sort a namevaluecollection in alphabetical order? Do I have to cast it to another list first like the sorted list or Ilist or something? If then how do I do that? right now I have all my ...
1
vote
3answers
284 views

AppSettings fallback/default value?

ASP.NET For each appSetting I use, I want to specify a value that will be returned if the specified key isn't found in the appSettings. I was about to create a class to manage this, but I'm thinking ...
1
vote
6answers
470 views

Getting a Request.Headers value

Very simple I'm sure, but driving me up the wall! There is a component that I use in my web application that identifies itself during a web request by adding the header "XYZComponent=true" - the ...
1
vote
5answers
215 views

Does this copy the reference or the object?

Sorry, I am being both thick and lazy, but mostly lazy. Actually, not even that. I am trying to save time so I can do more in less time as there's a lot to be done. Does this copy the reference or ...
1
vote
3answers
2k views

Modifying config sections in App.config either at runtime or install time

I have an WinForms application that is deployed using Visual Studio 2008's publish (ClickOnce) system. Within the application's app.config file I have a config section that is required by a third ...
1
vote
3answers
432 views

Insert into NameValueCollection in .NET

Is it possible to insert an item into a NameValueCollection in a specific index? I don't see an Insert() method.
1
vote
4answers
3k views

Populate array of objects from namevaluecollection in c#

I am new to C#. Here is a hard-coded thing I got working: InputProperty grantNumber = new InputProperty(); grantNumber.Name = "udf:Grant Number"; grantNumber.Val = "571-1238"; Update update = new ...
0
votes
1answer
23 views

ViewState .Add(… or ViewState[“XXXXX”] is efficient ?

I have a reasonable dout, ViewState .Add(.... or ViewState["XXXXX"] is efficient ? Eg. 1). ViewState.Add("Example1", value ); 2). ViewState["Example1"]=value; Both gives the same output, ...
0
votes
0answers
18 views

Writing a web service using NameValueCollection

I was asked to write a web service using NameValueCollection. In the past I have always written web services where the web method accepts list of parameters. This way of development restricts changes ...
0
votes
2answers
29 views

append a Name Value pair to other one

here is the code of the calling method - NameValuePair[] data = { new NameValuePair("first_name", firstName), new NameValuePair("last_name", lastName), new ...
0
votes
2answers
67 views

How to create a custom section that behaves like an AppSettings section?

I want to have the following structure in my config: <MySection> <add key="1" value="one" /> <add key="2" value="two" /> <add key="3" value="three" /> ...
0
votes
0answers
25 views

ConfigurationSection for NameValueSectionHandler

I have a custom section using NameValueSectionHandler, in a config file (called AddinApp.config). Programatically, I want a get a value of key ImpersonationWcfServices.Password. var localdllPath = ...
0
votes
2answers
310 views

C#: Convert Dictionary<> to NameValueCollection

How can I convert a Dictionary to a NameValueCollection? The existing functionality of our project returns an old fashioned NameValueCollection which I modify with LINQ. The result should be passed ...
0
votes
2answers
397 views

how convert NameValueCollection to JSON string?

I tried: NameValueCollection Data = new NameValueCollection(); Data.Add("foo","baa"); string json = new JavaScriptSerializer().Serialize(Data); it returns: ["foo"] I expected {"foo" : "baa"} ...
0
votes
1answer
44 views

namevaluecollection vs lookup

I need to represent some data that has a key and one or more values, seems there is a namevaluecollection or a lookup. From what I can tell the main difference between the two is that lookup is ...
0
votes
2answers
72 views

How can I best log a NameValueCollection into a database field in a readable way?

Is there a standard way of doing this? I had considered using XML, but perhaps there is a more straight-forward way. To clarify, I'm dumping the whole collection in a "details" column in my database ...
0
votes
3answers
332 views

Encode values in a NameValueCollection C# .net

I have a name value collections which is passed into a method to send to another system via a web client. public string DoExtendedTransferAsString(string operation, NameValueCollection query, ...
0
votes
1answer
389 views

How to Modify HTTP Header of a request using C#?

I was trying to modify a HTTP Header using C#. I tried to manipulate the Request.Headers on Page preinit event. But when i try to set anything to the Headers, i get PlatformNotSupportedException. ...
0
votes
1answer
71 views

NameValueCollection doesn't actually do anything with its IEqualityComparer?

I am looking at System.Collections.Specialized.NameValueCollection and it takes an IEqualityComparer, which is good news if someone like me wanted to sort the items in the collection by, say, ...
0
votes
2answers
211 views

ASP.Net and NameValueCollection

I have the following method: public object[] GetEventsByUser(DateTime start, DateTime end, string fullUrl) The value of the fullUrl is: ...
0
votes
3answers
832 views

Sort NameValueCollection against Enum

I have to sort a namevaluecollection(Items usually 5 to 15) Against an enum(having items more than 60). Right now I am using this extension function, Anyone have better idea to write this code.... ...
0
votes
0answers
1k views

Accessing System.Collections.Specialized.NameValueCollection in Silverlight v3

I can see that the system reference is added in silverlight project in visual studio. The assembly is mapped to C:\Program Files\Reference Assemblies\Microsoft\Framework\Silverlight\v3.0\system.dll. ...