Bcr.Datadog.iOS.SR 2.26.0

dotnet add package Bcr.Datadog.iOS.SR --version 2.26.0
                    
NuGet\Install-Package Bcr.Datadog.iOS.SR -Version 2.26.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Bcr.Datadog.iOS.SR" Version="2.26.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Bcr.Datadog.iOS.SR" Version="2.26.0" />
                    
Directory.Packages.props
<PackageReference Include="Bcr.Datadog.iOS.SR" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Bcr.Datadog.iOS.SR --version 2.26.0
                    
#r "nuget: Bcr.Datadog.iOS.SR, 2.26.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Bcr.Datadog.iOS.SR@2.26.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Bcr.Datadog.iOS.SR&version=2.26.0
                    
Install as a Cake Addin
#tool nuget:?package=Bcr.Datadog.iOS.SR&version=2.26.0
                    
Install as a Cake Tool

.NET Bindings for the Datadog Mobile iOS SDK - SessionReplay

These bindings are for the SessionReplay framework.

These bindings are only for iOS; tvOS is not included.

Prerequisites

Before using the iOS SDK bindings, make sure you have the following prerequisites:

  • iOS 17.0 or higher
  • .NET 8 or higher

Usage

See the Datadog iOS SDK repository for more information about initialization for any given piece of functionality.

All functionality requires you to initialize the SDK before use. The Datadog documentation has more information; the basics are to initialize in FinishedLaunching():

  1. Import the Datadog.iOS.SessionReplay namespace:

    using Datadog.iOS.SessionReplay;
    
  2. Init the DDSessionReplay:

    public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
    {
       // other SDK Initialization code here
    
       DDSessionReplayConfiguration replayConfig = new DDSessionReplayConfiguration(
           100.0F, 
           DDTextAndInputPrivacyLevel.MaskAll, 
           DDImagePrivacyLevel.MaskAll, 
           DDTouchPrivacyLevel.Hide);
    
       DDSessionReplay.Enable(replayConfig);
    }
    
Product Compatible and additional computed target framework versions.
.NET net8.0-ios17.0 is compatible.  net9.0-ios was computed.  net9.0-ios18.0 is compatible.  net10.0-ios was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.26.0 352 5/11/2025
2.22.8 180 2/15/2025
2.22.2 148 1/22/2025
2.22.1 144 1/9/2025
2.22.0 115 1/8/2025