Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSAMI-WSL-1
QOSAMI-WSL-1
/
src
/
windows
/
wslsettings
/
Activation
/
IActivationHandler.cs
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
cs
10 lines
219 Bytes
Copy permalink
Copy
Raw
1
// Copyright (C) Microsoft Corporation. All rights reserved.
2
3
namespace
WslSettings.Activation
;
4
5
public
interface
IActivationHandler
6
{
7
bool
CanHandle
(
object
args
);
8
9
Task
HandleAsync
(
object
args
);
10
}