HttpStatusCode Enumerations...

C

clintonG

The StatusCode is returned as an HttpWebResponse Member Name
such as OK, Moved, NotFound and so on.

Does anybody know how to get an actual HTTP return code?

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET (e-mail address removed)
URL http://www.metromilwaukee.com/clintongallagher/
 
C

Chris R. Timmons

The StatusCode is returned as an HttpWebResponse Member Name
such as OK, Moved, NotFound and so on.

Does anybody know how to get an actual HTTP return code?

From the help entry for HttpStatusCode:

"The HttpStatusCode enumeration contains the values of the status
codes defined in RFC 2616 for HTTP 1.1."

HttpStatusCode is an enumeration, so it's already a number. An
enumeration's default numeric type is Int32 (int in C#). Try:

using System;
using System.Net;

namespace ExampleNamespace
{
public class ExampleClass
{
[STAThread]
public static void Main()
{
HttpWebRequest httpReq =
(HttpWebRequest) WebRequest.Create("http://www.yahoo.com");
httpReq.AllowAutoRedirect = false;

HttpWebResponse httpRes =
(HttpWebResponse) httpReq.GetResponse();

Console.WriteLine("httpRes.StatusCode name = {0}",
httpRes.StatusCode) ;
Console.WriteLine("httpRes.StatusCode value = {0}",
(int) httpRes.StatusCode) ;

// Close the response.
httpRes.Close();
}
}
}


Hope this helps.

Chris.
 
C

clintonG

Thanks for the copy and pasted code Chris. ;-) I used a similar snippet
and read the same statement regarding the enumeration...

Using the remote MSDN copy of what we have locally...
http://msdn.microsoft.com/library/d...ml/frlrfsystemnethttpstatuscodeclasstopic.asp


To make the long story short I was not casting the StatusCode
property to an int. How would I know? Am I to understand that
all enums return an integer type?

Here's my (curious) code that now returns desired results...

HttpWebRequest httpReq =
(HttpWebRequest)WebRequest.Create("http://metromilwaukee.com");
httpReq.AllowAutoRedirect = false;

HttpWebResponse httpRes = (HttpWebResponse)httpReq.GetResponse();

lblResponseValue.Text = "<b>Member Name: </b>"
+ httpRes.StatusCode + "<br
/>"
+ "<b>Status Code: </b>"
+ (int) httpRes.StatusCode
+"<br />"
+ "<b>Last Modified: </b>"
+ httpRes.LastModified;

// Note the curiosity regarding no requirement to use the ToString( )
method
nor cast the same property to an int unless I would have somehow known
to
do so. These circumstantial uses of type are keeping me confused.

<%= Clinton Gallagher








Chris R. Timmons said:
The StatusCode is returned as an HttpWebResponse Member Name
such as OK, Moved, NotFound and so on.

Does anybody know how to get an actual HTTP return code?

From the help entry for HttpStatusCode:

"The HttpStatusCode enumeration contains the values of the status
codes defined in RFC 2616 for HTTP 1.1."

HttpStatusCode is an enumeration, so it's already a number. An
enumeration's default numeric type is Int32 (int in C#). Try:

using System;
using System.Net;

namespace ExampleNamespace
{
public class ExampleClass
{
[STAThread]
public static void Main()
{
HttpWebRequest httpReq =
(HttpWebRequest) WebRequest.Create("http://www.yahoo.com");
httpReq.AllowAutoRedirect = false;

HttpWebResponse httpRes =
(HttpWebResponse) httpReq.GetResponse();

Console.WriteLine("httpRes.StatusCode name = {0}",
httpRes.StatusCode) ;
Console.WriteLine("httpRes.StatusCode value = {0}",
(int) httpRes.StatusCode) ;

// Close the response.
httpRes.Close();
}
}
}


Hope this helps.

Chris.
 
C

Chris R. Timmons

Thanks for the copy and pasted code Chris. ;-) I used a similar
snippet and read the same statement regarding the enumeration...

Using the remote MSDN copy of what we have locally...
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/
cpref/html/frlrfsystemnethttpstatuscodeclasstopic.asp

To make the long story short I was not casting the StatusCode
property to an int. How would I know? Am I to understand that
all enums return an integer type?

Clinton,

Int32 is the default type for enums. You can specify any other
integral type (except System.Char) as the type for an enum.

Enums can be a little confusing. A fair amount of casting has to be
used when accessing an enum value. There's also one way to create an
enum, and another way to access its properties and methods.

Creating an enum is done via the enum keyword:

// Using the default System.Int32 (C# "int) type:
public enum Enum1 { Value1 = 1, Value2 = 2 }

// Using the System.Byte (C# "byte") type:
public enum Enum2 : byte { Value1 = 128, Value2 = 138 }

Enum instances can be accessed using the methods and
properties defined in the System.Enum class. The help entries for
this class have several examples.

// Note the curiosity regarding no requirement to use the
ToString( ) method
nor cast the same property to an int unless I would have somehow
known to
do so. These circumstantial uses of type are keeping me
confused.

The C# Language Reference, while dry at times, is invaluable in
learning all of the nuances and quirks of C#. Section 7.7.4 covers
the addition operator (+). For string addition where only one of the
operands is a string, the compiler will call the .ToString() method
of the non-string operand. You can see this in action by overriding
the .ToString() method of a simple class:


using System;

namespace ExampleNamespace
{
public class ToStringClass
{
// By default, ToString() returns the fully
// qualified name of its type. Comment out this
// ToString() method to see what would otherwise be printed
// by the code in the Main() method...

public override string ToString()
{
return "42";
}
}

public class ExampleClass
{
[STAThread]
public static void Main()
{
ToStringClass tsc = new ToStringClass();

string msg =
"The answer to life, the universe and " +
"everything is " + tsc;

Console.WriteLine(msg) ;
}
}
}


Hope this helps.

Chris.
 
C

clintonG

Chris R. Timmons said:
Clinton,

Int32 is the default type for enums. You can specify any other
integral type (except System.Char) as the type for an enum.

Enums can be a little confusing. A fair amount of casting has to be
used when accessing an enum value. There's also one way to create an
enum, and another way to access its properties and methods.

Creating an enum is done via the enum keyword:

// Using the default System.Int32 (C# "int) type:
public enum Enum1 { Value1 = 1, Value2 = 2 }

// Using the System.Byte (C# "byte") type:
public enum Enum2 : byte { Value1 = 128, Value2 = 138 }

Enum instances can be accessed using the methods and
properties defined in the System.Enum class. The help entries for
this class have several examples.



The C# Language Reference, while dry at times, is invaluable in
learning all of the nuances and quirks of C#. Section 7.7.4 covers
the addition operator (+). For string addition where only one of the
operands is a string, the compiler will call the .ToString() method
of the non-string operand. You can see this in action by overriding
the .ToString() method of a simple class:


using System;

namespace ExampleNamespace
{
public class ToStringClass
{
// By default, ToString() returns the fully
// qualified name of its type. Comment out this
// ToString() method to see what would otherwise be printed
// by the code in the Main() method...

public override string ToString()
{
return "42";
}
}

public class ExampleClass
{
[STAThread]
public static void Main()
{
ToStringClass tsc = new ToStringClass();

string msg =
"The answer to life, the universe and " +
"everything is " + tsc;

Console.WriteLine(msg) ;
}
}
}


Hope this helps.

Chris.

Thanks so much for the lucid explanations Chris. I will be making an
effort to make a thorough study of enums as well as study of the
C# language reference with regard to its type casting behaviors.

<%= Clinton
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top