Docs Menu

Docs HomeRealm

Connect to an Atlas App Services Backend - .NET SDK

On this page

  • Access the App Client
  • Configuration

The App client is the interface to the App Services backend. It provides access to the authentication functionality, functions, and sync management.

Pass the App ID for your App, which you can find in the Realm UI.

var myRealmAppId = "<your_app_id>";
var app = App.Create(myRealmAppId);

For granular control of your app connection, such as custom timeouts for connections and the log level, you can pass an AppConfiguration object to the App.Create() method. The following example sets the LogLevel and the request timeout:

var appConfig = new AppConfiguration(myRealmAppId)
{
//LogLevel = LogLevel.Debug,
DefaultRequestTimeout = TimeSpan.FromMilliseconds(1500)
};
app = App.Create(appConfig);

Note

For most use cases, you only need your application's App ID to connect to Realm. The other settings demonstrated here are optional.

←  Application Services - .NET SDKCall a Function - .NET SDK →
Share Feedback
© 2023 MongoDB, Inc.

About

  • Careers
  • Investor Relations
  • Legal Notices
  • Privacy Notices
  • Security Information
  • Trust Center
© 2023 MongoDB, Inc.