ReadOnlyAttribute 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
ReadOnly 属性用于标记不修改 grain 状态的方法。
将方法标记为 ReadOnly 允许运行时系统执行大量优化,这些优化可能会显著提高应用程序的性能。
[System.AttributeUsage(System.AttributeTargets.Method)]
public sealed class ReadOnlyAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Method)]
[Orleans.InvokableCustomInitializer("AddInvokeMethodOptions", Orleans.CodeGeneration.InvokeMethodOptions.ReadOnly)]
public sealed class ReadOnlyAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Method)>]
type ReadOnlyAttribute = class
inherit Attribute
[<System.AttributeUsage(System.AttributeTargets.Method)>]
[<Orleans.InvokableCustomInitializer("AddInvokeMethodOptions", Orleans.CodeGeneration.InvokeMethodOptions.ReadOnly)>]
type ReadOnlyAttribute = class
inherit Attribute
Public NotInheritable Class ReadOnlyAttribute
Inherits Attribute
- 继承
-
ReadOnlyAttribute
- 属性
构造函数
ReadOnlyAttribute() |
ReadOnly 属性用于标记不修改 grain 状态的方法。 将方法标记为 ReadOnly 允许运行时系统执行大量优化,这些优化可能会显著提高应用程序的性能。 |