Click here to Skip to main content
15,892,161 members
Home / Discussions / C#
   

C#

 
AnswerRe: Iterating through MatchCollection Pin
Luc Pattyn28-Jan-10 15:12
sitebuilderLuc Pattyn28-Jan-10 15:12 
QuestionHow to get cookies from CookieContainer? Pin
hello_amigo28-Jan-10 10:54
hello_amigo28-Jan-10 10:54 
AnswerRe: How to get cookies from CookieContainer? Pin
Luc Pattyn28-Jan-10 12:02
sitebuilderLuc Pattyn28-Jan-10 12:02 
AnswerRe: How to get cookies from CookieContainer? Pin
Mycroft Holmes28-Jan-10 12:03
professionalMycroft Holmes28-Jan-10 12:03 
GeneralRe: How to get cookies from CookieContainer? Pin
hello_amigo28-Jan-10 13:32
hello_amigo28-Jan-10 13:32 
AnswerRe: How to get cookies from CookieContainer? Pin
Not Active28-Jan-10 13:37
mentorNot Active28-Jan-10 13:37 
AnswerRe: How to get cookies from CookieContainer? Pin
hello_amigo29-Jan-10 5:43
hello_amigo29-Jan-10 5:43 
GeneralRe: How to get cookies from CookieContainer? Pin
Lasha874-Mar-10 1:37
Lasha874-Mar-10 1:37 
foreach (Cookie cook in mycookie.GetCookies(new Uri("http://localhost")))
{
Console.WriteLine("----------------------------------------");
Console.WriteLine("Cookie:");
Console.WriteLine("{0} = {1}", cook.Name, cook.Value);
Console.WriteLine("Domain: {0}", cook.Domain);
Console.WriteLine("Path: {0}", cook.Path);
Console.WriteLine("Port: {0}", cook.Port);
Console.WriteLine("Secure: {0}", cook.Secure);

Console.WriteLine("When issued: {0}", cook.TimeStamp);
Console.WriteLine("Expires: {0} (expired? {1})",
cook.Expires, cook.Expired);
Console.WriteLine("Don't save: {0}", cook.Discard);
Console.WriteLine("Comment: {0}", cook.Comment);
Console.WriteLine("Uri for comments: {0}", cook.CommentUri);
Console.WriteLine("Version: RFC {0}", cook.Version == 1 ? "2109" : "2965");

// Show the string representation of the cookie.
Console.WriteLine("String: {0}", cook.ToString());
}
where mycookie is a cookie container that was got from the responce
QuestionUsing TaskScheduler 2.0 Pin
Bob Nona28-Jan-10 9:23
Bob Nona28-Jan-10 9:23 
AnswerRe: Using TaskScheduler 2.0 Pin
OriginalGriff28-Jan-10 10:24
mveOriginalGriff28-Jan-10 10:24 
GeneralConverting a project to target x64 platform Pin
SimulationofSai28-Jan-10 8:33
SimulationofSai28-Jan-10 8:33 
GeneralRe: Converting a project to target x64 platform [modified] Pin
harold aptroot28-Jan-10 9:07
harold aptroot28-Jan-10 9:07 
QuestionHow to work on Devices using C#? Pin
CoderForEver28-Jan-10 7:35
CoderForEver28-Jan-10 7:35 
AnswerRe: How to work on Devices using C#? Pin
Luc Pattyn28-Jan-10 7:37
sitebuilderLuc Pattyn28-Jan-10 7:37 
GeneralRe: How to work on Devices using C#? Pin
CoderForEver28-Jan-10 7:51
CoderForEver28-Jan-10 7:51 
GeneralRe: How to work on Devices using C#? Pin
Luc Pattyn28-Jan-10 8:05
sitebuilderLuc Pattyn28-Jan-10 8:05 
GeneralRe: How to work on Devices using C#? Pin
OriginalGriff28-Jan-10 8:17
mveOriginalGriff28-Jan-10 8:17 
GeneralRe: How to work on Devices using C#? Pin
Luc Pattyn28-Jan-10 8:34
sitebuilderLuc Pattyn28-Jan-10 8:34 
GeneralRe: How to work on Devices using C#? Pin
DaveyM6928-Jan-10 10:43
professionalDaveyM6928-Jan-10 10:43 
GeneralRe: How to work on Devices using C#? Pin
CoderForEver29-Jan-10 8:17
CoderForEver29-Jan-10 8:17 
GeneralRe: How to work on Devices using C#? Pin
DaveyM6929-Jan-10 13:16
professionalDaveyM6929-Jan-10 13:16 
QuestionWorking on ListViewItem Pin
CoderForEver28-Jan-10 7:26
CoderForEver28-Jan-10 7:26 
AnswerRe: Working on ListViewItem Pin
Saksida Bojan28-Jan-10 8:04
Saksida Bojan28-Jan-10 8:04 
QuestionData not insert Pin
mjawadkhatri28-Jan-10 6:54
mjawadkhatri28-Jan-10 6:54 
AnswerRe: Data not insert Pin
loyal ginger28-Jan-10 7:05
loyal ginger28-Jan-10 7:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.