Method | Description | |
---|---|---|
AuthorizeUser ( this @this, |
Authorizes user with hockeyapp auth. Opening a login page to require (hockeaypp) userid and pass from user if needed
|
|
CheckForUpdates ( this @this, |
Check for available updates
|
|
Configure ( this @this, string appId, |
main configuration method. call in app constructor
|
|
IdentifyUser ( this @this, string appSecret, |
Identify user with hockeaypp auth. Opening a login page to require valid email address for app if needed
|
|
LogoutUser ( this @this ) : void |
Logout the user by forgetting validation token
|
|
RegisterCustomUnhandledExceptionLogic ( this @this, Action |
The action you set will be called after HockeyApp has written the crash-log and allows you to run custom logic like marking the exception as handled
|
|
RegisterCustomUnobserveredTaskExceptionLogic ( this @this, Action |
The action you set will be called after HockeyApp has written the crash-log and allows you to run custom logic like exiting the application
|
|
SendCrashesAsync ( this @this, bool sendWithoutAsking = false ) : Task |
Send any collected crashes to the HockeyApp server. You should normally call this during startup of your app.
|
|
ShowFeedback ( this @this ) : void |
Open the feedback UI
|
|
UseCustomResourceManager ( this @this, ResourceManager manager ) : IHockeyClientConfigurable |
Provide a custom resource manager to override standard sdk i18n strings
|
Method | Description | |
---|---|---|
ShowFeedbackUI ( this @this, System.Windows.Navigation.NavigationService navigationService ) : void |
public static AuthorizeUser ( this @this, |
||
@this | this | |
successRedirect | Page-URI to redirect to after successful login | |
navigationService | System.Windows.Navigation.NavigationService | [optional] obsolete - not needed |
string | [Optional] initial email | |
tokenValidationPolicy | TokenValidationPolicy | |
authValidationMode | AuthValidationMode | |
return | void |
public static CheckForUpdates ( this @this, |
||
@this | this | |
settings | ||
return | void |
public static Configure ( this @this, string appId, |
||
@this | this | |
appId | string | |
telemetryConfiguration | ||
rootFrame | System.Windows.Controls.Frame | |
return | IHockeyClientConfigurable |
public static IdentifyUser ( this @this, string appSecret, |
||
@this | this | |
appSecret | string | Your app's app secret (see HockeyApp app page) |
successRedirect | Page-URI to redirect to after successful login | |
navigationService | System.Windows.Navigation.NavigationService | [optional] obsolete - not needed |
string | [Optional] initial email | |
tokenValidationPolicy | TokenValidationPolicy | |
authValidationMode | AuthValidationMode | |
return | void |
public static LogoutUser ( this @this ) : void | ||
@this | this | |
return | void |
public static RegisterCustomUnhandledExceptionLogic ( this @this, Action |
||
@this | this | |
customAction | Action |
The custom action. |
return | IHockeyClientConfigurable |
public static RegisterCustomUnobserveredTaskExceptionLogic ( this @this, Action |
||
@this | this | |
customAction | Action |
|
return | IHockeyClientConfigurable |
public static SendCrashesAsync ( this @this, bool sendWithoutAsking = false ) : Task |
||
@this | this | |
sendWithoutAsking | bool | configures if available crashes are sent immediately or if the user should be asked if the crashes should be sent or discarded |
return | Task |
public static ShowFeedback ( this @this ) : void | ||
@this | this | |
return | void |
public static UseCustomResourceManager ( this @this, ResourceManager manager ) : IHockeyClientConfigurable | ||
@this | this | |
manager | ResourceManager | resource manager to use |
return | IHockeyClientConfigurable |