Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor C# (CSharp) Method

WriteStartConstructor() public method

Writes the start of a constructor with the given name.
public WriteStartConstructor ( string name ) : void
name string The name of the constructor.
return void
        public override void WriteStartConstructor(string name)
        {
            base.WriteStartConstructor(name);

            AddParent(new JConstructor(name));
        }