Interface IFieldUtils
Namespace: Orleans.Serialization
Assembly: Orleans.Core.Abstractions.dll
Syntax
public interface IFieldUtils
Methods
| Improve this Doc View SourceGetGetter(FieldInfo)
Returns a delegate to get the value of a specified field.
Declaration
Delegate GetGetter(FieldInfo field)
Parameters
| Type | Name | Description |
|---|---|---|
| FieldInfo | field |
Returns
| Type | Description |
|---|---|
| Delegate | A delegate to get the value of a specified field. |
GetReferenceSetter(FieldInfo)
Returns a delegate to set the value of this field for an instance.
Declaration
Delegate GetReferenceSetter(FieldInfo field)
Parameters
| Type | Name | Description |
|---|---|---|
| FieldInfo | field |
Returns
| Type | Description |
|---|---|
| Delegate | A delegate to set the value of this field for an instance. |
GetValueSetter(FieldInfo)
Returns a delegate to set the value of this field for an instance.
Declaration
Delegate GetValueSetter(FieldInfo field)
Parameters
| Type | Name | Description |
|---|---|---|
| FieldInfo | field |
Returns
| Type | Description |
|---|---|
| Delegate | A delegate to set the value of this field for an instance. |