File: XmlnsPrefixAttribute.cs | Web Access |
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics) |
using System; namespace Microsoft.Maui.Graphics { [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] public sealed class XmlnsPrefixAttribute : Attribute { public XmlnsPrefixAttribute(string xmlNamespace, string prefix) { XmlNamespace = xmlNamespace ?? throw new ArgumentNullException(nameof(xmlNamespace)); Prefix = prefix ?? throw new ArgumentNullException(nameof(prefix)); } public string XmlNamespace { get; } public string Prefix { get; } } } |