File: System\Windows\Markup\Baml2006\Baml2006ReaderSettings.cs
Web Access
Project: src\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.
// See the LICENSE file in the project root for more information.
 
using System;
using System.Collections.Generic;
using System.IO;
using System.Xaml;
using System.Diagnostics;
using System.ComponentModel;
 
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; }
    }
}