C# Class Microsoft.HockeyApp.HockeyClientConfigurationExtensions

Extensions for fluent configuration
Mostrar archivo Open project: bitstadium/HockeySDK-Windows

Public Methods

Method Description
SetApiDomain ( this @this, string hockeyApiDomain ) : IHockeyClientConfigurable

Use this if you're using an on-premise version of HockeyApp. Default is: https://rink.hockeyapp.net

SetContactInfo ( this @this, string user, string email ) : IHockeyClientConfigurable

Set the user Id and email/contact information of the current user if known. This is sent to HockeyApp with crashes.

SetExceptionDescriptionLoader ( this @this, string>.Func descriptionLoader ) : IHockeyClientConfigurable

The provided func is called in case of an exception and the returned string is added as additional description of the exception.

UpdateContactInfo ( this @this, string user, string email ) : IHockeyClient

Set the user Id and emal/contact information of the current user if known. This is sent to HockeyApp with crashes.

Method Details

SetApiDomain() public static method

Use this if you're using an on-premise version of HockeyApp. Default is: https://rink.hockeyapp.net
public static SetApiDomain ( this @this, string hockeyApiDomain ) : IHockeyClientConfigurable
@this this
hockeyApiDomain string
return IHockeyClientConfigurable

SetContactInfo() public static method

Set the user Id and email/contact information of the current user if known. This is sent to HockeyApp with crashes.
public static SetContactInfo ( this @this, string user, string email ) : IHockeyClientConfigurable
@this this
user string
email string
return IHockeyClientConfigurable

SetExceptionDescriptionLoader() public static method

The provided func is called in case of an exception and the returned string is added as additional description of the exception.
public static SetExceptionDescriptionLoader ( this @this, string>.Func descriptionLoader ) : IHockeyClientConfigurable
@this this
descriptionLoader string>.Func
return IHockeyClientConfigurable

UpdateContactInfo() public static method

Set the user Id and emal/contact information of the current user if known. This is sent to HockeyApp with crashes.
public static UpdateContactInfo ( this @this, string user, string email ) : IHockeyClient
@this this
user string
email string
return IHockeyClient