| File: System\Windows\Markup\Baml2006\Baml2006ReaderSettings.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Xaml; namespace System.Windows.Baml2006 { internal class Baml2006ReaderSettings : XamlReaderSettings { public Baml2006ReaderSettings() { } public Baml2006ReaderSettings(Baml2006ReaderSettings settings) : base(settings) { OwnsStream = settings.OwnsStream; IsBamlFragment = settings.IsBamlFragment; } public Baml2006ReaderSettings(XamlReaderSettings settings) : base(settings) { } internal bool OwnsStream { get; set; } internal bool IsBamlFragment { get; set; } } }