Netsy.Helpers.EtsyUriBuilder.Result C# (CSharp) Method

Result() public method

Generate the resulting Uri
public Result ( ) : Uri
return System.Uri
        public Uri Result()
        {
            // must have an APi key
            if (!this.hasApiKey)
            {
                this.ApiKey();
            }

            return new Uri(this.result.ToString());
        }