master
md 17 lines 223 Bytes
Rendered 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 ```