committed by
GitHub
188 changed files with 669 additions and 106 deletions
@ -0,0 +1,2 @@ |
|||
T:Avalonia.Metadata.NotClientImplementableAttribute |
|||
T:Avalonia.Metadata.UnstableAttribute |
|||
@ -0,0 +1,17 @@ |
|||
using System; |
|||
|
|||
namespace Avalonia.Metadata |
|||
{ |
|||
/// <summary>
|
|||
/// This interface is not intended to be implemented outside of the core Avalonia framework as
|
|||
/// its API may change without warning.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// This interface is stable for consumption by a client, but should not be implemented as members
|
|||
/// may be added to its API.
|
|||
/// </remarks>
|
|||
[AttributeUsage(AttributeTargets.Interface)] |
|||
public class NotClientImplementableAttribute : Attribute |
|||
{ |
|||
} |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
using System; |
|||
|
|||
namespace Avalonia.Metadata |
|||
{ |
|||
/// <summary>
|
|||
/// This API is unstable and is not covered by API compatibility guarantees between minor and
|
|||
/// patch releases.
|
|||
/// </summary>
|
|||
public class UnstableAttribute : Attribute |
|||
{ |
|||
} |
|||
} |
|||
@ -1,9 +1,11 @@ |
|||
using System; |
|||
using Avalonia.Metadata; |
|||
|
|||
namespace Avalonia.Platform |
|||
{ |
|||
/// <summary>
|
|||
/// Actual implementation of a glyph run that stores platform dependent resources.
|
|||
/// </summary>
|
|||
[Unstable] |
|||
public interface IGlyphRunImpl : IDisposable { } |
|||
} |
|||
|
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue