Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSAMI-WSL
QOSAMI-WSL
/
doc
/
docs
/
api-reference
/
csharp
/
data-classes
/
vhdowner.md
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
md
17 lines
223 Bytes
Rendered
Copy permalink
Copy
Raw
1
# VhdOwner
2
3
Owner uid/gid for a named VHD volume root inode.
4
5
```
csharp
6
public
struct
VhdOwner
7
{
8
public
uint
Uid
;
9
public
uint
Gid
;
10
}
11
```
12
13
Example:
14
15
```
csharp
16
var
owner
=
new
VhdOwner
{
Uid
=
1000
,
Gid
=
1000
};
17
```