Blighttp.Reply.Referral C# (CSharp) Метод

Referral() публичный статический Метод

public static Referral ( string url ) : Reply
url string
Результат Reply
        public static Reply Referral(string url)
        {
            Reply reply = new Reply();
            reply.Initialise(ReplyCode.Found, ContentType.Plain);
            reply.IsReferral = true;
            reply.Location = url;
            reply.Body = "";
            return reply;
        }