Aliyun.Acs.Core.Http.HttpResponse.isSuccess C# (CSharp) Method

isSuccess() public method

public isSuccess ( ) : bool
return bool
        public bool isSuccess()
        {
            if (200 <= this.Status &&
                    300 > this.Status)
                return true;
            return false;
        }