Exemplo n.º 1
0
        public string BuildQuery(FormatType formatType)
        {
            StringBuilder stringBuilder = new StringBuilder();

            if (formatType.Value() != FormatType.NULL.Value())
            {
                stringBuilder.Append("&format=");
                stringBuilder.Append(formatType.Value());
            }
            return(stringBuilder.ToString());
        }