Movatterモバイル変換


[0]ホーム

URL:


Dev guideRecipesAPI ReferenceChangelog
Dev guideAPI ReferenceRecipesChangelogUser GuideGitHubDev CommunityOptimizely AcademySubmit a ticketLog InFeature Experimentation
Dev guide
All
Pages
Start typing to search…

Customize the C# SDK error handler

How to create your own error handler logic for the Optimizely Feature Experimentation C# SDK.

You can provide your own customerror handler logic to standardize error messaging across your production environment.

This error handler is called when the C# SDK is not executed as expected. This may be caused by incorrect arguments being provided to the SDK or running the SDK in an environment where network or any other disruptions occur.

See the C# code example. If the error handler is not overridden, a no-op error handler is used by default.

using OptimizelySDK.ErrorHandler;/// <summary>/// Creates a CustomErrorHandler to handle errors raised by the SDK./// </summary>public class CustomErrorHandler : IErrorHandler{    /// <summary>    /// Handle exceptions when raised by the SDK.    /// </summary>    /// <param name="exception">Exception object raised by the SDK.</param>    public void HandleError(Exception exception)    {        throw new NotImplementedException();    }}

Updated 17 days ago



[8]ページ先頭

©2009-2025 Movatter.jp