-
-
Notifications
You must be signed in to change notification settings - Fork 44
iw4madminapplicationpluginscript ScriptPluginHelper
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph IW4MAdmin.Application.Plugin.Script
IW4MAdmin.Application.Plugin.Script.ScriptPluginHelper[[ScriptPluginHelper]]
end
Returns | Name |
---|---|
void |
GetUrl (... ) |
void |
PostUrl (string url, string body, string bearerToken, Delegate callback) |
void |
RequestNotifyAfterDelay (int delayMs, Delegate callback) |
void |
RequestUrl (ScriptPluginWebRequest request, Delegate callback) |
public ScriptPluginHelper(IManager manager, ScriptPluginV2 scriptPlugin)
Type | Name | Description |
---|---|---|
IManager |
manager | |
ScriptPluginV2 |
scriptPlugin |
public void GetUrl(string url, Delegate callback)
Type | Name | Description |
---|---|---|
string |
url | |
Delegate |
callback |
public void GetUrl(string url, string bearerToken, Delegate callback)
Type | Name | Description |
---|---|---|
string |
url | |
string |
bearerToken | |
Delegate |
callback |
public void PostUrl(string url, string body, string bearerToken, Delegate callback)
Type | Name | Description |
---|---|---|
string |
url | |
string |
body | |
string |
bearerToken | |
Delegate |
callback |
public void RequestUrl(ScriptPluginWebRequest request, Delegate callback)
Type | Name | Description |
---|---|---|
ScriptPluginWebRequest |
request | |
Delegate |
callback |
public void RequestNotifyAfterDelay(int delayMs, Delegate callback)
Type | Name | Description |
---|---|---|
int |
delayMs | |
Delegate |
callback |
Generated with ModularDoc