public class SyncedEventBase<T> : Synchronizable
// Create a new SyncedEvent of given type by inheriting from SyncedEventBase.
public class SyncedEventLong : Alteruna.SyncedEventBase<long> { }| HaveBeenInvoked | True if the event has been invoked previously. |
| LastValue | Last value used in the event. |
| AssembleData | (Overrides SynchronizableAssembleData(Writer, Byte)) |
| DisassembleData | (Overrides SynchronizableDisassembleData(Reader, Byte)) |
| Invoke | Invoke the event with the last used argument. |
| Invoke(T) | Invoke the event with the given argument. |
| InvokeSilent | Invoke without triggering local event with the last used argument. |
| InvokeSilent(T) | Invoke without triggering local event with the given argument. |
| Reset | |
| ValueToString | Get the last used argument as string. |