Class NetworkStringPropertySync<K>
Provides an abstraction to track changes on a string property contained on a NetworkPropertiesTable. A NetworkPropertiesTable component is needed in the same entity or any of its parents.
Inheritance
NetworkStringPropertySync<K>
Implements
Inherited Members
Namespace: Evergine.Networking.Components
Assembly: Evergine.Networking.dll
Syntax
public abstract class NetworkStringPropertySync<K> : NetworkPropertySync<K, string>, IDependencyObject where K : struct, IConvertible
Type Parameters
Name | Description |
---|---|
K |
Methods
ReadValue(NetworkPropertiesTable)
Defines a delegate to read the value from the player NetworkPropertiesTable.
Declaration
protected override string ReadValue(NetworkPropertiesTable propertiesTable)
Parameters
Type | Name | Description |
---|---|---|
NetworkPropertiesTable | propertiesTable | The properties table that contains the player custom properties. |
Returns
Type | Description |
---|---|
string | The property value. |
Overrides
WriteValue(NetworkPropertiesTable, string)
Defines a delegate to write the value in the player NetworkPropertiesTable.
Declaration
protected override void WriteValue(NetworkPropertiesTable propertiesTable, string value)
Parameters
Type | Name | Description |
---|---|---|
NetworkPropertiesTable | propertiesTable | The properties table that contains the player custom properties. |
string | value | The value to write. |