Skip to main content
added 53 characters in body
Source Link
Ahuman
  • 762
  • 7
  • 18

YouBased on @dorcohen's answer and @pootzko's comment. You can use this. It is safe over the wire.

var errorId = System.Web.HttpServerUtility.UrlTokenEncode(Guid.NewGuid().ToByteArray()); 

You can use this. It is safe over the wire.

var errorId = System.Web.HttpServerUtility.UrlTokenEncode(Guid.NewGuid().ToByteArray()); 

Based on @dorcohen's answer and @pootzko's comment. You can use this. It is safe over the wire.

var errorId = System.Web.HttpServerUtility.UrlTokenEncode(Guid.NewGuid().ToByteArray()); 
Source Link
Ahuman
  • 762
  • 7
  • 18

You can use this. It is safe over the wire.

var errorId = System.Web.HttpServerUtility.UrlTokenEncode(Guid.NewGuid().ToByteArray());