CK.Text.JSONVisitor.VisitObjectProperty C# (CSharp) Method

VisitObjectProperty() protected method

Visits a "property" : ... JSON property.
protected VisitObjectProperty ( int startPropertyIndex, string propertyName, int propertyNumber ) : bool
startPropertyIndex int /// Starting index of the in : /// this is the index of the opening quote ". ///
propertyName string Parsed property name.
propertyNumber int Zero based number of the property in the object.
return bool
        protected virtual bool VisitObjectProperty( int startPropertyIndex, string propertyName, int propertyNumber )
        {
            try
            {
                _path.Add( new Parent( propertyName, propertyNumber ) );
                return Visit();
            }
            finally
            {
                _path.RemoveAt( _path.Count - 1 );
            }
        }
        /// <summary>