// Token: 0x060020EA RID: 8426 RVA: 0x00097084 File Offset: 0x00095284
        public void WriteEndConstructor()
        {
            this.VerifyEndTagState(BamlRecordType.ConstructorParametersStart, BamlRecordType.ConstructorParametersEnd);
            int lineNumber   = 0;
            int linePosition = 0;
            int depth        = this._depth - 1;

            this._depth = depth;
            XamlConstructorParametersEndNode xamlConstructorParametersEndNode = new XamlConstructorParametersEndNode(lineNumber, linePosition, depth);

            this._bamlRecordWriter.WriteConstructorParametersEnd(xamlConstructorParametersEndNode);
        }
 /// <summary>
 /// Write the end of constructor section that follows the start of an element.
 /// </summary>
 public void WriteEndConstructor()
 {
     VerifyEndTagState(BamlRecordType.ConstructorParametersStart, 
                       BamlRecordType.ConstructorParametersEnd);
     
     XamlConstructorParametersEndNode node = new XamlConstructorParametersEndNode(
                                        0,
                                        0,
                                        --_depth);
     _bamlRecordWriter.WriteConstructorParametersEnd(node);
 }