ReadOnlyAttribute 类

定义

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 允许运行时系统执行大量优化,这些优化可能会显著提高应用程序的性能。

适用于