/URIScheme

Registering your Windows application to a URI scheme.

Primary LanguageC#MIT LicenseMIT

URIScheme

Channel Status
CI CI
NuGet.org NuGet.org

Usage

const string key = @"ssa";
var service = new URISchemeService(key, @"URL:ssa Protocol", @"D:\MyAppPath\MyApp.exe --openurl");
// var service = new URISchemeService(key, @"URL:ssa Protocol", @"D:\MyAppPath\MyApp.exe --openurl", RegisterType.LocalMachine);

var isSet = service.Check();

service.Set();

service.Delete();