 | OsuClient Constructor |
Osu API Key
Namespace:
CSharpOsu
Assembly:
CSharpOsu (in CSharpOsu.dll) Version: 1.0.0
Syntaxpublic OsuClient(
string key,
HttpClient httpClient = null,
bool _throwIfNull = false
)
Public Sub New (
key As String,
Optional httpClient As HttpClient = Nothing,
Optional _throwIfNull As Boolean = false
)
public:
OsuClient(
String^ key,
HttpClient^ httpClient = nullptr,
bool _throwIfNull = false
)
new :
key : string *
?httpClient : HttpClient *
?_throwIfNull : bool
(* Defaults:
let _httpClient = defaultArg httpClient null
let __throwIfNull = defaultArg _throwIfNull false
*)
-> OsuClient
Parameters
- key
- Type: SystemString
API Key - httpClient (Optional)
- Type: System.Net.HttpHttpClient
Specify a HttpClient to use. Default null, will use internal HttpClient. - _throwIfNull (Optional)
- Type: SystemBoolean
If the returned objects is null then throw error. By default is set on false.
See Also