Browse Source

Add sumary and remark to class header

pull/4891/head
bmello4688 6 years ago
parent
commit
e80e413cf0
  1. 9
      src/Avalonia.Base/Metadata/XmlnsPrefixAttribute.cs

9
src/Avalonia.Base/Metadata/XmlnsPrefixAttribute.cs

@ -2,6 +2,15 @@
namespace Avalonia.Metadata
{
/// <summary>
/// Use to predefine the prefix associated to an xml namespace in a xaml file
/// </summary>
/// <remarks>
/// example:
/// [assembly: XmlnsPrefix("https://github.com/avaloniaui", "av")]
/// xaml:
/// xmlns:av="https://github.com/avaloniaui"
/// </remarks>
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
public sealed class XmlnsPrefixAttribute : Attribute
{

Loading…
Cancel
Save