HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center

Disabling/Enabling Feature Requests for Xamarin

Described here is how to disable or enable the feature requests for your Xamarin apps.

You can completely prevent any feature request related features from displaying by disabling it using the API below.

//Enable
IBGFeatureRequests.Enabled = true;

//Disable
IBGFeatureRequests.Enabled = false;
//Enable
InstabugCore.SetFeatureRequestsState(Feature.State.Enabled);

//Disable
InstabugCore.SetFeatureRequestsState(Feature.State.Disabled);