You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Represents the Unix file mode 644, which grants read and write permissions to the user and read permissions to the group and others.
15
+
/// </summary>
16
+
publicconstUnixFileModeFileMode644=
17
+
UnixFileMode.UserRead|
18
+
UnixFileMode.UserWrite|
19
+
UnixFileMode.GroupRead|
20
+
UnixFileMode.OtherRead;
21
+
22
+
/// <summary>
23
+
/// Represents the Unix file mode 666, which grants read and write permissions to the user, group, and others.
24
+
/// </summary>
25
+
publicconstUnixFileModeFileMode666=
26
+
UnixFileMode.UserRead|
27
+
UnixFileMode.UserWrite|
28
+
UnixFileMode.GroupRead|
29
+
UnixFileMode.GroupWrite|
30
+
UnixFileMode.OtherRead|
31
+
UnixFileMode.OtherWrite;
32
+
33
+
/// <summary>
34
+
/// Represents the Unix file mode 700, which grants read, write, and execute permissions to the user, and no permissions to the group and others.
35
+
/// </summary>
36
+
publicconstUnixFileModeFileMode700=
37
+
UnixFileMode.UserRead|
38
+
UnixFileMode.UserWrite|
39
+
UnixFileMode.UserExecute;
40
+
41
+
/// <summary>
42
+
/// Represents the Unix file mode 755, which grants read, write, and execute permissions to the user, and read and execute permissions to the group and others.
43
+
/// </summary>
44
+
publicconstUnixFileModeFileMode755=
45
+
UnixFileMode.UserRead|
46
+
UnixFileMode.UserWrite|
47
+
UnixFileMode.UserExecute|
48
+
UnixFileMode.GroupRead|
49
+
UnixFileMode.GroupExecute|
50
+
UnixFileMode.OtherRead|
51
+
UnixFileMode.OtherExecute;
52
+
53
+
/// <summary>
54
+
/// Represents the Unix file mode 777, which grants read, write, and execute permissions to the user, group, and others.
55
+
/// </summary>
56
+
publicconstUnixFileModeFileMode777=
57
+
UnixFileMode.UserRead|
58
+
UnixFileMode.UserWrite|
59
+
UnixFileMode.UserExecute|
60
+
UnixFileMode.GroupRead|
61
+
UnixFileMode.GroupWrite|
62
+
UnixFileMode.GroupExecute|
63
+
UnixFileMode.OtherRead|
64
+
UnixFileMode.OtherWrite|
65
+
UnixFileMode.OtherExecute;
66
+
13
67
/// <summary>
14
68
/// Initializes a new instance of the <see cref="Unix" /> class.
15
69
/// </summary>
@@ -49,6 +103,12 @@ public Unix(IDockerEndpointAuthenticationConfiguration dockerEndpointAuthConfig)
0 commit comments