IronCow.RestRequest.Execute C# (CSharp) 메소드

Execute() 공개 메소드

public Execute ( Rtm rtm ) : void
rtm Rtm
리턴 void
        public override void Execute(Rtm rtm)
        {
            rtm.GetResponse(Method, Parameters, ThrowOnError, (response) => {
                if (Callback != null)
                    Callback(response);
            });
        }