Cobrowse.io Docs
  • Getting started
  • SDK Installation
    • Web
    • iOS
    • Android
    • React Native
    • Flutter
    • .NET Mobile
    • macOS
    • Windows
  • SDK Features
    • Account config
    • Identify your devices
    • Use 6-digit codes
    • Redact sensitive data
    • Viewing PDFs
    • Universal Cobrowse
    • Customize the interface
      • Active session controls
      • 6-digit code screen
      • User consent dialog
      • Remote control consent dialog
      • Full device consent dialog
      • Localization / translation
    • Initiate sessions with push
    • Listening for events
    • Full device capabilities
      • Full device screen sharing
      • Full device remote control
      • Managing full device mode
    • Advanced configuration
      • Starting and stopping the SDK
      • Declaring capabilities
      • Intercepting mobile SDK network requests
      • Web
        • IFrames support
        • IE 11 polyfills
        • Cross-domain session support
        • Ignore Views
      • iOS
        • Alternate render method
        • Custom touch handling
      • Android
        • Backporting TLS to older Android versions
  • Agent-side integrations
    • Agent-side overview
    • Platform integrations
      • Zendesk
      • Salesforce
        • Migrating from legacy to v2
        • Salesforce (Legacy)
      • Genesys
        • Genesys Cloud
        • Engage Workspace Web Edition (WWE)
        • Engage Workspace Desktop Edition (WDE)
      • Intercom
      • Freshworks
      • Talkdesk
      • NICE
    • Custom integrations
    • Agent SDK
      • API Reference
      • Sample code snippets
    • Authentication (JWTs)
      • JWT Policies
    • Authentication (SAML 2.0)
    • IFrame embeds
  • Enterprise self-hosting
    • Self-hosting overview
    • Docker Compose
    • Helm chart
      • Image Pull Secret
      • Environment Variables
      • Optional recording components
      • Pod Annotations
    • AWS terraform
      • AWS metrics configuration
    • Azure terraform
      • Azure metrics configuration
    • GCP terraform
      • GCP metrics configuration
    • Sizing guidelines
    • Running your instance
      • Adding a superuser
      • Limiting account creation
      • Limiting magic link recipients
      • Configuring SMTP
      • Managing your deployment
    • Monitoring your instance
      • Available metrics
      • Self-Hosted Prometheus
    • Advanced configuration
      • Air gap configuration
      • Pin web SDK version
      • L7 firewall configuration
      • Docker proxy configuration
    • Troubleshooting
Powered by GitBook
On this page
  • Installation
  • Usage
  • Add your License Key
  • Try it out
  • Requirements
  • HiDPI Support

Was this helpful?

  1. SDK Installation

Windows

Windows SDK for native desktop applications

PreviousmacOSNextAccount config

Last updated 10 months ago

Was this helpful?

Installation

We recommend installing the Cobrowse.io SDK using NuGet. Add the following package to your projects:

Usage

To use Cobrowse.io in your project, use the Cobrowse.IO namespace:

using Cobrowse.IO;

To start Cobrowse.io:

CobrowseIO.Instance.License = "put your license key here";
await CobrowseIO.Instance.Start();

Add your License Key

Please register an account and generate your free License Key at .

This will associate sessions from your Windows app with your Cobrowse account.

Try it out

Once you have your app running on a Windows computer, navigate to to see your device listed. You can click the "Connect" button to initiate a Cobrowse session!

Requirements

  • .NET Framework 4.6+, .NET Core 3+, .NET 5.0+

  • Minimum supported OS is Windows 7

  • x86 and x64 architectures only are supported

HiDPI Support

For Windows 10 HiDPI mode (when display scale is not 100%) client application should be "DPI aware". To enable this please add app.manifest ("New item" -> "Application Manifest File" in Visual Studio) and add/uncomment the following XML tag:

<application xmlns="urn:schemas-microsoft-com:asm.v3">
  <windowsSettings>
    <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
    <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
  </windowsSettings>
</application>

Any questions at all? Please email us at .

hello@cobrowse.io
https://cobrowse.io/dashboard/settings
https://cobrowse.io/dashboard
CobrowseIO.Windows NuGet