-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycorecommands UnlinkClientCommand
RaidMax edited this page May 21, 2023
·
1 revision
Provides a way for administrators to "unlink" linked accounts This problem is common in IW4x where the client identifier is a file that is commonly transmitted when uploading and sharing the game files This command creates a new link and assigns the guid, and all aliases with the current IP associated to the provided client ID to the new link
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Commands
SharedLibraryCore.Commands.UnlinkClientCommand[[UnlinkClientCommand]]
end
subgraph SharedLibraryCore
SharedLibraryCore.Command[[Command]]
class SharedLibraryCore.Command abstractStyle;
end
SharedLibraryCore.Command --> SharedLibraryCore.Commands.UnlinkClientCommand
Returns | Name |
---|---|
Task |
ExecuteAsync (GameEvent E) |
Provides a way for administrators to "unlink" linked accounts This problem is common in IW4x where the client identifier is a file that is commonly transmitted when uploading and sharing the game files This command creates a new link and assigns the guid, and all aliases with the current IP associated to the provided client ID to the new link
public UnlinkClientCommand(CommandConfiguration config, ITranslationLookup lookup)
Type | Name | Description |
---|---|---|
CommandConfiguration |
config | |
ITranslationLookup |
lookup |
public override async Task ExecuteAsync(GameEvent E)
Type | Name | Description |
---|---|---|
GameEvent |
E |
Generated with ModularDoc