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;
        }