| File: System\Xaml\NamespaceDeclaration.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\System.Xaml\System.Xaml.csproj (System.Xaml) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #nullable disable namespace System.Xaml { [DebuggerDisplay("Prefix={Prefix} Namespace={Namespace}")] public class NamespaceDeclaration { private string prefix; private string ns; public NamespaceDeclaration(string ns, string prefix) { this.ns = ns; this.prefix = prefix; } public string Prefix { get { return prefix; } } public string Namespace { get { return ns; } } } }