mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
18 lines
387 B
C#
18 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Resource
|
|
{
|
|
/// <summary>
|
|
/// Indicates that a running remote invocation may be cancelled.
|
|
/// </summary>
|
|
[AttributeUsage(
|
|
AttributeTargets.Method,
|
|
AllowMultiple = false,
|
|
Inherited = true)]
|
|
public sealed class CancellableAttribute : Attribute
|
|
{
|
|
}
|
|
}
|