Initialise() 정적인 개인적인 메소드

static private Initialise ( ReplyCode code, ContentType type ) : void
code ReplyCode
type ContentType
리턴 void
예제 #1
0
 public static Reply Referral(string uri)
 {
     Reply reply = new Reply();
     reply.Initialise(ReplyCode.Found, ContentType.Plain);
     reply.IsReferral = true;
     reply.Location = uri;
     reply.Body = "";
     return reply;
 }