Example #1
0
        /// <summary>
        /// Reads the object from the reader
        /// </summary>
        /// <returns>returns hashtable containing the list of property names and values</returns>
        private JsonObjectRecords ReadObject()
        {
            JsonObjectRecords record = new JsonObjectRecords();

            // Consume the '{'
            this.ReadNextCharacter();

            while (true)
            {
                char ch = this.PeekNextSignificantCharacter();
                if (ch == '\0')
                {
                    // Unterminated Object literal
                    throw DataServiceException.CreateBadRequestError(Strings.BadRequestStream_InvalidContent);
                }

                if (ch == '}')
                {
                    this.ReadNextCharacter();
                    return(record);
                }

                if (record.Count != 0)
                {
                    if (ch != ',')
                    {
                        throw DataServiceException.CreateBadRequestError(Strings.BadRequestStream_MissingMemberSeperator);
                    }
                    else
                    {
                        this.ReadNextCharacter();
                    }
                }

                string name = this.ReadName(/* allowQuotes */ true);
                if (String.IsNullOrEmpty(name))
                {
                    throw DataServiceException.CreateBadRequestError(Strings.BadRequestStream_InvalidJsonNameSpecifiedOrExtraComma);
                }

                ch = this.PeekNextSignificantCharacter();

                // Unexpected name/value pair syntax in object literal
                if (ch != ':')
                {
                    throw DataServiceException.CreateBadRequestError(Strings.BadRequestStream_MissingNameValueSeperator(name));
                }
                else
                {
                    this.ReadNextCharacter();
                }

                object item = this.ReadValue();

                record.Add(name, item);
            }
        }
Example #2
0
        /// <summary>
        /// Reads the object from the reader
        /// </summary>
        /// <returns>returns hashtable containing the list of property names and values</returns>
        private JsonObjectRecords ReadObject()
        {
            JsonObjectRecords record = new JsonObjectRecords();            

            // Consume the '{'
            this.ReadNextCharacter();

            while (true)
            {
                char ch = this.PeekNextSignificantCharacter();
                if (ch == '\0')
                {
                    // Unterminated Object literal
                    throw DataServiceException.CreateBadRequestError(Strings.BadRequestStream_InvalidContent);
                }

                if (ch == '}')
                {
                    this.ReadNextCharacter();
                    return record;
                }

                if (record.Count != 0)
                {
                    if (ch != ',')
                    {
                        throw DataServiceException.CreateBadRequestError(Strings.BadRequestStream_MissingMemberSeperator);
                    }
                    else
                    {
                        this.ReadNextCharacter();
                    }
                }

                string name = this.ReadName(/* allowQuotes */ true);
                if (String.IsNullOrEmpty(name))
                {
                    throw DataServiceException.CreateBadRequestError(Strings.BadRequestStream_InvalidJsonNameSpecifiedOrExtraComma);
                }

                ch = this.PeekNextSignificantCharacter();

                // Unexpected name/value pair syntax in object literal
                if (ch != ':')
                {
                    throw DataServiceException.CreateBadRequestError(Strings.BadRequestStream_MissingNameValueSeperator(name));
                }
                else
                {
                    this.ReadNextCharacter();
                }

                object item = this.ReadValue();
                
                record.Add(name, item);
            }
        }