Windows
Windows SDK
We recommend installing the Cobrowse.io SDK using NuGet. Add the following package to your projects:
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();
Please register an account and generate your free License Key at https://cobrowse.io/dashboard/settings.
This will associate sessions from your Windows app with your Cobrowse account.
Once you have your app running on a Windows computer, navigate to https://cobrowse.io/dashboard to see your device listed. You can click the "Connect" button to initiate a Cobrowse session!
- .NET Framework 4.6
- Minimum supported OS is Windows 7
- x86 and x64 architectures only are supported
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>
Last modified 9mo ago