File: System\Windows\Markup\IStreamInfo.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. // // Description: // Provides an internal way to get the assembly from which the stream was created. // This is used by the various streams that the Navigation engine creates internally // and consumed by the parser\Baml Loader. // using System.Reflection; namespace System.Windows.Markup { internal interface IStreamInfo { Assembly Assembly { get; } } } |