Skip to content

InstallationError

Summary

Represents the predefined algo installation errors.

Signature

1
public enum InstallationError

Namespace

cAlgo.API

Fields

Forbidden

Summary

Installation error due to lack of permission by user.

Signature

1
public static InstallationError Forbidden;

Return Value

InstallationError

InvalidFile

Summary

Installation error due to algo file being invalid.

Signature

1
public static InstallationError InvalidFile;

Return Value

InstallationError

FileNotFound

Summary

Installation error due to algo file not found in provided path (Only for file path based installations).

Signature

1
public static InstallationError FileNotFound;

Return Value

InstallationError

DownloadError

Summary

Installation error due to algo file downloading error (Only for URI based installations).

Signature

1
public static InstallationError DownloadError;

Return Value

InstallationError

Canceled

Summary

When user cancels installation dialog.

Signature

1
public static InstallationError Canceled;

Return Value

InstallationError

Unknown

Summary

Unknown or unrecognized error.

Signature

1
public static InstallationError Unknown;

Return Value

InstallationError