-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreeventsserver ServerValueSetRequestEvent
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Events.Server
SharedLibraryCore.Events.Server.ServerValueSetRequestEvent[[ServerValueSetRequestEvent]]
SharedLibraryCore.Events.Server.GameServerEvent[[GameServerEvent]]
class SharedLibraryCore.Events.Server.GameServerEvent abstractStyle;
end
SharedLibraryCore.Events.Server.GameServerEvent --> SharedLibraryCore.Events.Server.ServerValueSetRequestEvent
Type | Name | Methods |
---|---|---|
Nullable <int > |
DelayMs |
get, init |
Nullable <int > |
TimeoutMs |
get, init |
string |
Value |
get, init |
string |
ValueName |
get, init |
public ServerValueSetRequestEvent(string valueName, string value, IGameServer server)
Type | Name | Description |
---|---|---|
string |
valueName | |
string |
value | |
IGameServer |
server |
public string ValueName { get; init; }
public string Value { get; init; }
public Nullable<int> DelayMs { get; init; }
public Nullable<int> TimeoutMs { get; init; }
Generated with ModularDoc