CSharpUtils.Http.HttpHeaderList.SetCookie C# (CSharp) Method

SetCookie() public method

public SetCookie ( String Name, String Value ) : HttpHeaderList
Name String
Value String
return HttpHeaderList
		public HttpHeaderList SetCookie(String Name, String Value)
		{
			throw (new NotImplementedException());
			//Add("Set-Cookie", String.Format("{0}={1}", Name, Value));
			//return this;
		}