ServerApiUrlsExtensions Method
Builds the URL of the endpoint of Licensing service which returns the program extensions.
Namespace: SMath.Manager.Network.UrlBuildersAssembly: SMath.Manager (in SMath.Manager.dll) Version: 1.2.9018.0
public string Extensions(
string extensionType = null,
bool? excludeBetaExtensions = null,
bool? minimizeOutput = null
)
Public Function Extensions (
Optional extensionType As String = Nothing,
Optional excludeBetaExtensions As Boolean? = Nothing,
Optional minimizeOutput As Boolean? = Nothing
) As String
public:
virtual String^ Extensions(
String^ extensionType = nullptr,
Nullable<bool> excludeBetaExtensions = nullptr,
Nullable<bool> minimizeOutput = nullptr
) sealed
abstract Extensions :
?extensionType : string *
?excludeBetaExtensions : Nullable<bool> *
?minimizeOutput : Nullable<bool>
(* Defaults:
let _extensionType = defaultArg extensionType null
let _excludeBetaExtensions = defaultArg excludeBetaExtensions null
let _minimizeOutput = defaultArg minimizeOutput null
*)
-> string
override Extensions :
?extensionType : string *
?excludeBetaExtensions : Nullable<bool> *
?minimizeOutput : Nullable<bool>
(* Defaults:
let _extensionType = defaultArg extensionType null
let _excludeBetaExtensions = defaultArg excludeBetaExtensions null
let _minimizeOutput = defaultArg minimizeOutput null
*)
-> string
- extensionType String (Optional)
- Type of extensions to look for or to skip this argument.
- excludeBetaExtensions NullableBoolean (Optional)
- Whether to exclude beta versions of extensions from the output or to skip this argument.
- minimizeOutput NullableBoolean (Optional)
- Whether to minimize the output or to skip this argument.
StringThe URL which is built.
IServerApiUrlsExtensions(String, NullableBoolean, NullableBoolean)