Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="DistributedCacheExtensions" FullName="Microsoft.Extensions.Caching.Distributed.DistributedCacheExtensions">
<TypeSignature Language="C#" Value="public static class DistributedCacheExtensions" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit DistributedCacheExtensions extends System.Object" />
Expand Down Expand Up @@ -132,6 +133,7 @@
<summary>Asynchronously gets a string from the specified cache with the specified key.</summary>
<returns>A task that gets the string value from the stored cache key.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Set">
Expand Down Expand Up @@ -242,6 +244,7 @@
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> or <paramref name="value" /> is null.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="SetString">
Expand Down Expand Up @@ -427,6 +430,7 @@
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> or <paramref name="value" /> is null.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="SetStringAsync">
Expand Down Expand Up @@ -468,7 +472,8 @@
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="key" /> or <paramref name="value" /> is null.</exception>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="IDistributedCache" FullName="Microsoft.Extensions.Caching.Distributed.IDistributedCache">
<TypeSignature Language="C#" Value="public interface IDistributedCache" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IDistributedCache" />
Expand Down Expand Up @@ -117,6 +118,7 @@
<summary>Gets a value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the located value or null.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Refresh">
Expand Down Expand Up @@ -209,6 +211,7 @@
<summary>Refreshes a value in the cache based on its key, resetting its sliding expiration timeout (if any).</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Remove">
Expand Down Expand Up @@ -301,6 +304,7 @@
<summary>Removes the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Set">
Expand Down Expand Up @@ -405,7 +409,8 @@
<summary>Sets the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="MemoryDistributedCache" FullName="Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache">
<TypeSignature Language="C#" Value="public class MemoryDistributedCache : Microsoft.Extensions.Caching.Distributed.IDistributedCache" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit MemoryDistributedCache extends System.Object implements class Microsoft.Extensions.Caching.Distributed.IDistributedCache" />
Expand Down Expand Up @@ -210,6 +211,7 @@
<summary>Gets a value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the located value or <see langword="null" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Refresh">
Expand Down Expand Up @@ -311,6 +313,7 @@
<summary>Refreshes a value in the cache based on its key, resetting its sliding expiration timeout (if any).</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Remove">
Expand Down Expand Up @@ -412,6 +415,7 @@
<summary>Removes the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Set">
Expand Down Expand Up @@ -525,7 +529,8 @@
<summary>Sets the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
7 changes: 6 additions & 1 deletion xml/Microsoft.Extensions.Caching.Redis/RedisCache.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="RedisCache" FullName="Microsoft.Extensions.Caching.Redis.RedisCache">
<TypeSignature Language="C#" Value="public class RedisCache : IDisposable, Microsoft.Extensions.Caching.Distributed.IDistributedCache" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit RedisCache extends System.Object implements class Microsoft.Extensions.Caching.Distributed.IDistributedCache, class System.IDisposable" />
Expand Down Expand Up @@ -172,6 +173,7 @@
<summary>Gets a value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the located value or <see langword="null" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Refresh">
Expand Down Expand Up @@ -263,6 +265,7 @@
<summary>Refreshes a value in the cache based on its key, resetting its sliding expiration timeout (if any).</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Remove">
Expand Down Expand Up @@ -354,6 +357,7 @@
<summary>Removes the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Set">
Expand Down Expand Up @@ -457,7 +461,8 @@
<summary>Sets the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="SqlServerCache" FullName="Microsoft.Extensions.Caching.SqlServer.SqlServerCache">
<TypeSignature Language="C#" Value="public class SqlServerCache : Microsoft.Extensions.Caching.Distributed.IDistributedCache" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit SqlServerCache extends System.Object implements class Microsoft.Extensions.Caching.Distributed.IDistributedCache" />
Expand Down Expand Up @@ -149,6 +150,7 @@
<summary>Gets a value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the located value or <see langword="null" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Refresh">
Expand Down Expand Up @@ -244,6 +246,7 @@
<summary>Refreshes a value in the cache based on its key, resetting its sliding expiration timeout (if any).</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Remove">
Expand Down Expand Up @@ -339,6 +342,7 @@
<summary>Removes the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Set">
Expand Down Expand Up @@ -446,7 +450,8 @@
<summary>Sets the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="RedisCache" FullName="Microsoft.Extensions.Caching.StackExchangeRedis.RedisCache">
<TypeSignature Language="C#" Value="public class RedisCache : IDisposable, Microsoft.Extensions.Caching.Distributed.IDistributedCache" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit RedisCache extends System.Object implements class Microsoft.Extensions.Caching.Distributed.IDistributedCache, class System.IDisposable" />
Expand Down Expand Up @@ -135,6 +136,7 @@
<summary>Gets a value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation, containing the located value or <see langword="null" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Refresh">
Expand Down Expand Up @@ -195,6 +197,7 @@
<summary>Refreshes a value in the cache based on its key, resetting its sliding expiration timeout (if any).</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Remove">
Expand Down Expand Up @@ -255,6 +258,7 @@
<summary>Removes the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="Set">
Expand Down Expand Up @@ -323,7 +327,8 @@
<summary>Sets the value with the given key.</summary>
<returns>The <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="HealthCheckService" FullName="Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckService">
<TypeSignature Language="C#" Value="public abstract class HealthCheckService" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit HealthCheckService extends System.Object" />
Expand Down Expand Up @@ -91,6 +92,7 @@
yielding a <see cref="T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport" /> containing the results.
.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="CheckHealthAsync">
Expand Down Expand Up @@ -128,7 +130,8 @@
yielding a <see cref="T:Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport" /> containing the results.
.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="IHealthCheck" FullName="Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheck">
<TypeSignature Language="C#" Value="public interface IHealthCheck" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IHealthCheck" />
Expand Down Expand Up @@ -50,7 +51,8 @@
<summary>Runs the health check, returning the status of the component being checked.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that completes when the health check has finished, yielding the status of the component being checked.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="IHealthCheckPublisher" FullName="Microsoft.Extensions.Diagnostics.HealthChecks.IHealthCheckPublisher">
<TypeSignature Language="C#" Value="public interface IHealthCheckPublisher" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IHealthCheckPublisher" />
Expand Down Expand Up @@ -66,7 +67,8 @@
<summary>Publishes the provided <paramref name="report" />.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> which will complete when publishing is complete.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="ConsoleLifetime" FullName="Microsoft.Extensions.Hosting.Internal.ConsoleLifetime">
<TypeSignature Language="C#" Value="public class ConsoleLifetime : IDisposable, Microsoft.Extensions.Hosting.IHostLifetime" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit ConsoleLifetime extends System.Object implements class Microsoft.Extensions.Hosting.IHostLifetime, class System.IDisposable" />
Expand Down Expand Up @@ -225,6 +226,7 @@ This API supports the .NET infrastructure and is not intended to be used directl

]]></format>
</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="WaitForStartAsync">
Expand Down Expand Up @@ -267,7 +269,8 @@ This API supports the .NET infrastructure and is not intended to be used directl

]]></format>
</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Type Name="SystemdLifetime" FullName="Microsoft.Extensions.Hosting.Systemd.SystemdLifetime">
<TypeSignature Language="C#" Value="public class SystemdLifetime : IDisposable, Microsoft.Extensions.Hosting.IHostLifetime" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit SystemdLifetime extends System.Object implements class Microsoft.Extensions.Hosting.IHostLifetime, class System.IDisposable" />
Expand Down Expand Up @@ -106,6 +107,7 @@
<summary>Asynchronously stops and shuts down the host. This method is called from <see cref="M:Microsoft.Extensions.Hosting.IHost.StopAsync(System.Threading.CancellationToken)" />.</summary>
<returns>A task that represents the asynchronous stop operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
<Member MemberName="WaitForStartAsync">
Expand Down Expand Up @@ -135,7 +137,8 @@
<summary>Asynchronously waits until the start operation is complete before continuing. This method is called at the beginning of <see cref="M:Microsoft.Extensions.Hosting.IHost.StartAsync(System.Threading.CancellationToken)" />. This can be used to delay startup until signaled by an external event.</summary>
<returns>A task that represents the waiting for start operation.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OperationCanceledException">The cancellation token was canceled.</exception>
</Docs>
</Member>
</Members>
</Type>
</Type>
Loading