Skip to main content
added 3 characters in body
Source Link

For example System.Net.HttpStatusCode Enum  , iI would like to get the HTTP Status Codes instead of the HTTP Status Text System.Net.HttpStatusCode.Forbidden System.Net.HttpStatusCode.Forbidden should return 403 instead of "Forbidden".

howHow can iI extract the value?

For example System.Net.HttpStatusCode Enum  , i would like to get the HTTP Status Codes instead of the HTTP Status Text System.Net.HttpStatusCode.Forbidden should return 403 instead of "Forbidden"

how can i extract the value?

For example System.Net.HttpStatusCode Enum, I would like to get the HTTP Status Codes instead of the HTTP Status Text. System.Net.HttpStatusCode.Forbidden should return 403 instead of "Forbidden".

How can I extract the value?

Source Link
kurozakura
  • 2.4k
  • 8
  • 28
  • 41

How to get the numeric value from the Enum?

For example System.Net.HttpStatusCode Enum , i would like to get the HTTP Status Codes instead of the HTTP Status Text System.Net.HttpStatusCode.Forbidden should return 403 instead of "Forbidden"

how can i extract the value?