Skip to content

Commit 3e253f6

Browse files
committed
Add XML docs to pubternal types
1 parent 50660f3 commit 3e253f6

27 files changed

+136
-10
lines changed

src/Components/Analyzers/src/ComponentInternalUsageDiagnosticAnalzyer.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
namespace Microsoft.Extensions.Internal
1010
{
11+
/// <summary>
12+
/// This API supports infrastructure and is not intended to be used
13+
/// directly from your code. This API may change or be removed in future releases.
14+
/// </summary>
1115
[DiagnosticAnalyzer(LanguageNames.CSharp)]
1216
public class ComponentInternalUsageDiagnosticAnalyzer : DiagnosticAnalyzer
1317
{

src/DataProtection/DataProtection/src/KeyManagement/Internal/DefaultKeyResolution.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
namespace Microsoft.AspNetCore.DataProtection.KeyManagement.Internal
77
{
8+
/// <summary>
9+
/// This API supports infrastructure and is not intended to be used
10+
/// directly from your code. This API may change or be removed in future releases.
11+
/// </summary>
812
public struct DefaultKeyResolution
913
{
1014
/// <summary>

src/DataProtection/DataProtection/src/KeyManagement/Internal/ICacheableKeyRingProvider.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
namespace Microsoft.AspNetCore.DataProtection.KeyManagement.Internal
77
{
8+
/// <summary>
9+
/// This API supports infrastructure and is not intended to be used
10+
/// directly from your code. This API may change or be removed in future releases.
11+
/// </summary>
812
public interface ICacheableKeyRingProvider
913
{
1014
CacheableKeyRing GetCacheableKeyRing(DateTimeOffset now);

src/DataProtection/DataProtection/src/KeyManagement/Internal/IInternalXmlKeyManager.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
namespace Microsoft.AspNetCore.DataProtection.KeyManagement.Internal
99
{
10+
/// <summary>
11+
/// This API supports infrastructure and is not intended to be used
12+
/// directly from your code. This API may change or be removed in future releases.
13+
/// </summary>
1014
public interface IInternalXmlKeyManager
1115
{
1216
IKey CreateNewKey(Guid keyId, DateTimeOffset creationDate, DateTimeOffset activationDate, DateTimeOffset expirationDate);

src/DataProtection/DataProtection/src/KeyManagement/Internal/IKeyRingProvider.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33

44
namespace Microsoft.AspNetCore.DataProtection.KeyManagement.Internal
55
{
6+
/// <summary>
7+
/// This API supports infrastructure and is not intended to be used
8+
/// directly from your code. This API may change or be removed in future releases.
9+
/// </summary>
610
public interface IKeyRingProvider
711
{
812
IKeyRing GetCurrentKeyRing();

src/Features/JsonPatch/src/Internal/ConversionResult.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33

44
namespace Microsoft.AspNetCore.JsonPatch.Internal
55
{
6+
/// <summary>
7+
/// This API supports infrastructure and is not intended to be used
8+
/// directly from your code. This API may change or be removed in future releases.
9+
/// </summary>
610
public class ConversionResult
711
{
812
public ConversionResult(bool canBeConverted, object convertedInstance)
@@ -14,4 +18,4 @@ public ConversionResult(bool canBeConverted, object convertedInstance)
1418
public bool CanBeConverted { get; }
1519
public object ConvertedInstance { get; }
1620
}
17-
}
21+
}

src/Features/JsonPatch/src/Internal/ConversionResultProvider.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
namespace Microsoft.AspNetCore.JsonPatch.Internal
99
{
10+
/// <summary>
11+
/// This API supports infrastructure and is not intended to be used
12+
/// directly from your code. This API may change or be removed in future releases.
13+
/// </summary>
1014
public static class ConversionResultProvider
1115
{
1216
public static ConversionResult ConvertTo(object value, Type typeToConvertTo)

src/Features/JsonPatch/src/Internal/DictionaryAdapterOfTU.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
namespace Microsoft.AspNetCore.JsonPatch.Internal
1010
{
11+
/// <summary>
12+
/// This API supports infrastructure and is not intended to be used
13+
/// directly from your code. This API may change or be removed in future releases.
14+
/// </summary>
1115
public class DictionaryAdapter<TKey, TValue> : IAdapter
1216
{
1317
public virtual bool TryAdd(

src/Features/JsonPatch/src/Internal/DynamicObjectAdapter.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313

1414
namespace Microsoft.AspNetCore.JsonPatch.Internal
1515
{
16+
/// <summary>
17+
/// This API supports infrastructure and is not intended to be used
18+
/// directly from your code. This API may change or be removed in future releases.
19+
/// </summary>
1620
public class DynamicObjectAdapter : IAdapter
1721
{
1822
public virtual bool TryAdd(

src/Features/JsonPatch/src/Internal/IAdapter.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
namespace Microsoft.AspNetCore.JsonPatch.Internal
77
{
8+
/// <summary>
9+
/// This API supports infrastructure and is not intended to be used
10+
/// directly from your code. This API may change or be removed in future releases.
11+
/// </summary>
812
public interface IAdapter
913
{
1014
bool TryTraverse(

0 commit comments

Comments
 (0)