private void WritePropertyIList(BamlPropertyIList node) { _blob.Write(ref _pos, (byte)RecordType.PropertyIListStart); _blob.Write(ref _pos, (short)GetPropertyId(node.DeclaringProperty)); BeginScope(node, RecordType.PropertyIListEnd); }
private void ReadPropertyIList() { var node = new BamlPropertyIList(); node.DeclaringProperty = GetProperty(_accessor.ReadInt16()); AddNode(node); BeginScope(node, RecordType.PropertyIListEnd); }