// Token: 0x060020E9 RID: 8425 RVA: 0x00097044 File Offset: 0x00095244
        public void WriteStartConstructor()
        {
            this.VerifyWriteState();
            this.Push(BamlRecordType.ConstructorParametersStart);
            int lineNumber   = 0;
            int linePosition = 0;
            int depth        = this._depth - 1;

            this._depth = depth;
            XamlConstructorParametersStartNode xamlConstructorParametersStartNode = new XamlConstructorParametersStartNode(lineNumber, linePosition, depth);

            this._bamlRecordWriter.WriteConstructorParametersStart(xamlConstructorParametersStartNode);
        }
 /// <summary>
 /// Write the start of constructor section that follows the start of an element.
 /// </summary>
 public void WriteStartConstructor()
 {
     VerifyWriteState();
     Push(BamlRecordType.ConstructorParametersStart);
     
     XamlConstructorParametersStartNode node = new XamlConstructorParametersStartNode(
                                        0,
                                        0,
                                        --_depth);
     _bamlRecordWriter.WriteConstructorParametersStart(node);
 }