Method | Description | |
---|---|---|
Chmod ( |
||
Chmod ( |
||
Chmod ( |
||
Chmod ( |
||
Chmod ( int mode ) : void | ||
Chmod ( int mode, Action |
||
Chmod ( string path, int mode ) : void | ||
Chmod ( string path, int mode, Action |
||
Chown ( |
||
Chown ( |
||
Chown ( |
||
Chown ( |
||
Chown ( int uid, int gid ) : void | ||
Chown ( int uid, int gid, Action |
||
Chown ( string path, int uid, int gid ) : void | ||
Chown ( string path, int uid, int gid, Action |
||
Close ( ) : void | ||
Close ( Action |
||
Close ( |
||
Close ( |
||
DataSync ( ) : void | ||
DataSync ( Action |
||
DataSync ( |
||
DataSync ( |
||
Link ( |
||
Link ( |
||
Link ( string path, string newPath ) : void | ||
Link ( string path, string newPath, Action |
||
Open ( |
||
Open ( string path, UVFileAccess access, UVFile>.Action |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( ArraySegment |
||
Read ( ArraySegment |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( |
||
Read ( byte data ) : void | ||
Read ( byte data, int>.Action |
||
Read ( byte data, int index, int count ) : void | ||
Read ( byte data, int index, int count, int>.Action |
||
Read ( int offset, ArraySegment |
||
Read ( int offset, ArraySegment |
||
Read ( int offset, byte data, int>.Action |
||
Read ( int offset, byte data, int index, int count ) : void | ||
Read ( int offset, byte data, int index, int count, int>.Action |
||
Readlink ( |
||
Readlink ( string path, string>.Action |
||
Stat ( |
||
Stat ( |
||
Stat ( string path, UVFileStat>.Action |
||
Symlink ( |
||
Symlink ( |
||
Symlink ( string path, string newPath ) : void | ||
Symlink ( string path, string newPath, Action |
||
Sync ( ) : void | ||
Sync ( Action |
||
Sync ( |
||
Sync ( |
||
Truncate ( |
||
Truncate ( |
||
Truncate ( int offset ) : void | ||
Truncate ( int offset, Action |
||
UVFile ( |
||
UVFile ( int fd ) : System | ||
Unlink ( |
||
Unlink ( |
||
Unlink ( string path ) : void | ||
Unlink ( string path, Action |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( int offset, |
||
Write ( int offset, |
||
Write ( int offset, string text ) : int | ||
Write ( int offset, string text, int>.Action |
||
Write ( string text ) : int | ||
Write ( string text, int>.Action |
||
Write ( ArraySegment |
||
Write ( ArraySegment |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( |
||
Write ( byte data ) : void | ||
Write ( byte data, int>.Action |
||
Write ( byte data, int index, int count ) : void | ||
Write ( byte data, int index, int count, int>.Action |
||
Write ( int offset, ArraySegment |
||
Write ( int offset, ArraySegment |
||
Write ( int offset, Loop loop, ArraySegment |
||
Write ( int offset, byte data, int>.Action |
||
Write ( int offset, byte data, int index, int count ) : void | ||
Write ( int offset, byte data, int index, int count, int>.Action |
Method | Description | |
---|---|---|
uv_fs_chmod ( IntPtr loop, IntPtr req, string path, int mode, NativeMethods callback ) : int | ||
uv_fs_chown ( IntPtr loop, IntPtr req, string path, int uid, int gid, NativeMethods callback ) : int | ||
uv_fs_close ( IntPtr loop, IntPtr req, int fd, NativeMethods callback ) : int | ||
uv_fs_fchmod ( IntPtr loop, IntPtr req, int fd, int mode, NativeMethods callback ) : int | ||
uv_fs_fchown ( IntPtr loop, IntPtr req, int fd, int uid, int gid, NativeMethods callback ) : int | ||
uv_fs_fdatasync ( IntPtr loop, IntPtr req, int fd, NativeMethods callback ) : int | ||
uv_fs_fstat ( IntPtr loop, IntPtr req, int fd, NativeMethods callback ) : int | ||
uv_fs_fsync ( IntPtr loop, IntPtr req, int fd, NativeMethods callback ) : int | ||
uv_fs_ftruncate ( IntPtr loop, IntPtr req, int file, long offset, NativeMethods callback ) : int | ||
uv_fs_link ( IntPtr loop, IntPtr req, string path, string newPath, NativeMethods callback ) : int | ||
uv_fs_open ( IntPtr loop, IntPtr req, string path, int flags, int mode, NativeMethods callback ) : int | ||
uv_fs_read ( IntPtr loop, IntPtr req, int fd, uv_buf_t buf, int nbufs, long offset, NativeMethods callback ) : int | ||
uv_fs_readlink ( IntPtr loop, IntPtr req, string path, NativeMethods callback ) : int | ||
uv_fs_stat ( IntPtr loop, IntPtr req, string path, NativeMethods callback ) : int | ||
uv_fs_symlink ( IntPtr loop, IntPtr req, string path, string newPath, int flags, NativeMethods callback ) : int | ||
uv_fs_unlink ( IntPtr loop, IntPtr req, string path, NativeMethods callback ) : int | ||
uv_fs_write ( IntPtr loop, IntPtr req, int fd, uv_buf_t bufs, int nbufs, long offset, NativeMethods fs_cb ) : int |
public Chmod ( |
||
loop | ||
mode | int | |
callback | Action |
|
return | void |
public static Chmod ( |
||
loop | ||
path | string | |
mode | int | |
return | void |
public static Chmod ( |
||
loop | ||
path | string | |
mode | int | |
callback | Action |
|
return | void |
public Chmod ( int mode, Action |
||
mode | int | |
callback | Action |
|
return | void |
public static Chmod ( string path, int mode ) : void | ||
path | string | |
mode | int | |
return | void |
public static Chmod ( string path, int mode, Action |
||
path | string | |
mode | int | |
callback | Action |
|
return | void |
public Chown ( |
||
loop | ||
uid | int | |
gid | int | |
return | void |
public Chown ( |
||
loop | ||
uid | int | |
gid | int | |
callback | Action |
|
return | void |
public static Chown ( |
||
loop | ||
path | string | |
uid | int | |
gid | int | |
return | void |
public static Chown ( |
||
loop | ||
path | string | |
uid | int | |
gid | int | |
callback | Action |
|
return | void |
public Chown ( int uid, int gid, Action |
||
uid | int | |
gid | int | |
callback | Action |
|
return | void |
public static Chown ( string path, int uid, int gid ) : void | ||
path | string | |
uid | int | |
gid | int | |
return | void |
public static Chown ( string path, int uid, int gid, Action |
||
path | string | |
uid | int | |
gid | int | |
callback | Action |
|
return | void |
public Close ( |
||
loop | ||
callback | Action |
|
return | void |
public DataSync ( |
||
loop | ||
callback | Action |
|
return | void |
public static Link ( |
||
loop | ||
path | string | |
newPath | string | |
return | void |
public static Link ( |
||
loop | ||
path | string | |
newPath | string | |
callback | Action |
|
return | void |
public static Link ( string path, string newPath ) : void | ||
path | string | |
newPath | string | |
return | void |
public static Link ( string path, string newPath, Action |
||
path | string | |
newPath | string | |
callback | Action |
|
return | void |
public static Open ( |
||
loop | ||
path | string | |
access | UVFileAccess | |
callback | UVFile>.Action | |
return | void |
public static Open ( string path, UVFileAccess access, UVFile>.Action |
||
path | string | |
access | UVFileAccess | |
callback | UVFile>.Action | |
return | void |
public Read ( |
||
loop | ||
encoding | ||
text | string | |
return | int |
public Read ( |
||
loop | ||
encoding | ||
text | string | |
callback | int>.Action | |
return | int |
public Read ( |
||
loop | ||
offset | int | |
encoding | ||
text | string | |
return | int |
public Read ( |
||
loop | ||
offset | int | |
encoding | ||
text | string | |
callback | int>.Action | |
return | int |
public Read ( |
||
loop | ||
offset | int | |
text | string | |
return | int |
public Read ( |
||
loop | ||
offset | int | |
text | string | |
callback | int>.Action | |
return | int |
public Read ( |
||
loop | ||
text | string | |
callback | int>.Action | |
return | int |
public Read ( ArraySegment |
||
data | ArraySegment |
|
callback | int>.Action | |
return | void |
public Read ( |
||
loop | ||
data | ArraySegment |
|
return | void |
public Read ( |
||
loop | ||
data | ArraySegment |
|
callback | int>.Action | |
return | void |
public Read ( |
||
loop | ||
data | byte | |
callback | int>.Action | |
return | void |
public Read ( |
||
loop | ||
data | byte | |
index | int | |
count | int | |
return | void |
public Read ( |
||
loop | ||
data | byte | |
index | int | |
count | int | |
callback | int>.Action | |
return | void |
public Read ( |
||
loop | ||
offset | int | |
data | ArraySegment |
|
return | void |
public Read ( |
||
loop | ||
offset | int | |
segment | ArraySegment |
|
callback | int>.Action | |
return | void |
public Read ( |
||
loop | ||
offset | int | |
data | byte | |
callback | int>.Action | |
return | void |
public Read ( |
||
loop | ||
offset | int | |
data | byte | |
index | int | |
count | int | |
return | void |
public Read ( |
||
loop | ||
offset | int | |
data | byte | |
index | int | |
count | int | |
callback | int>.Action | |
return | void |
public Read ( byte data, int>.Action |
||
data | byte | |
callback | int>.Action | |
return | void |
public Read ( byte data, int index, int count ) : void | ||
data | byte | |
index | int | |
count | int | |
return | void |
public Read ( byte data, int index, int count, int>.Action |
||
data | byte | |
index | int | |
count | int | |
callback | int>.Action | |
return | void |
public Read ( int offset, ArraySegment |
||
offset | int | |
data | ArraySegment |
|
return | void |
public Read ( int offset, ArraySegment |
||
offset | int | |
data | ArraySegment |
|
callback | int>.Action | |
return | void |
public Read ( int offset, byte data, int>.Action |
||
offset | int | |
data | byte | |
callback | int>.Action | |
return | void |
public Read ( int offset, byte data, int index, int count ) : void | ||
offset | int | |
data | byte | |
index | int | |
count | int | |
return | void |
public Read ( int offset, byte data, int index, int count, int>.Action |
||
offset | int | |
data | byte | |
index | int | |
count | int | |
callback | int>.Action | |
return | void |
public static Readlink ( |
||
loop | ||
path | string | |
callback | string>.Action | |
return | void |
public static Readlink ( string path, string>.Action |
||
path | string | |
callback | string>.Action | |
return | void |
public Stat ( |
||
loop | ||
callback | UVFileStat>.Action | |
return | void |
public static Stat ( |
||
loop | ||
path | string | |
callback | UVFileStat>.Action | |
return | void |
public static Stat ( string path, UVFileStat>.Action |
||
path | string | |
callback | UVFileStat>.Action | |
return | void |
public static Symlink ( |
||
loop | ||
path | string | |
newPath | string | |
return | void |
public static Symlink ( |
||
loop | ||
path | string | |
newPath | string | |
callback | Action |
|
return | void |
public static Symlink ( string path, string newPath ) : void | ||
path | string | |
newPath | string | |
return | void |
public static Symlink ( string path, string newPath, Action |
||
path | string | |
newPath | string | |
callback | Action |
|
return | void |
public Sync ( |
||
loop | ||
callback | Action |
|
return | void |
public Truncate ( |
||
loop | ||
offset | int | |
return | void |
public Truncate ( |
||
loop | ||
offset | int | |
callback | Action |
|
return | void |
public Truncate ( int offset, Action |
||
offset | int | |
callback | Action |
|
return | void |
public static Unlink ( |
||
loop | ||
path | string | |
return | void |
public static Unlink ( |
||
loop | ||
path | string | |
callback | Action |
|
return | void |
public static Unlink ( string path, Action |
||
path | string | |
callback | Action |
|
return | void |
public Write ( |
||
encoding | ||
text | string | |
return | int |
public Write ( |
||
encoding | ||
text | string | |
callback | int>.Action | |
return | int |
public Write ( |
||
loop | ||
encoding | ||
text | string | |
return | int |
public Write ( |
||
loop | ||
encoding | ||
text | string | |
callback | int>.Action | |
return | int |
public Write ( |
||
loop | ||
offset | int | |
encoding | ||
text | string | |
return | int |
public Write ( |
||
loop | ||
offset | int | |
encoding | ||
text | string | |
callback | int>.Action | |
return | int |
public Write ( |
||
loop | ||
offset | int | |
text | string | |
return | int |
public Write ( |
||
loop | ||
offset | int | |
text | string | |
callback | int>.Action | |
return | int |
public Write ( |
||
loop | ||
text | string | |
return | int |
public Write ( |
||
loop | ||
text | string | |
callback | int>.Action | |
return | int |
public Write ( int offset, |
||
offset | int | |
encoding | ||
text | string | |
return | int |
public Write ( int offset, |
||
offset | int | |
encoding | ||
text | string | |
callback | int>.Action | |
return | int |
public Write ( int offset, string text ) : int | ||
offset | int | |
text | string | |
return | int |
public Write ( int offset, string text, int>.Action |
||
offset | int | |
text | string | |
callback | int>.Action | |
return | int |
public Write ( string text, int>.Action |
||
text | string | |
callback | int>.Action | |
return | int |
public Write ( ArraySegment |
||
data | ArraySegment |
|
callback | int>.Action | |
return | void |
public Write ( |
||
loop | ||
data | ArraySegment |
|
return | void |
public Write ( |
||
loop | ||
data | ArraySegment |
|
callback | int>.Action | |
return | void |
public Write ( |
||
loop | ||
data | byte | |
callback | int>.Action | |
return | void |
public Write ( |
||
loop | ||
data | byte | |
index | int | |
count | int | |
return | void |
public Write ( |
||
loop | ||
data | byte | |
index | int | |
count | int | |
callback | int>.Action | |
return | void |
public Write ( |
||
loop | ||
offset | int | |
segment | ArraySegment |
|
callback | int>.Action | |
return | void |
public Write ( |
||
loop | ||
offset | int | |
data | byte | |
callback | int>.Action | |
return | void |
public Write ( |
||
loop | ||
offset | int | |
data | byte | |
index | int | |
count | int | |
return | void |
public Write ( |
||
loop | ||
offset | int | |
data | byte | |
index | int | |
count | int | |
callback | int>.Action | |
return | void |
public Write ( byte data, int>.Action |
||
data | byte | |
callback | int>.Action | |
return | void |
public Write ( byte data, int index, int count ) : void | ||
data | byte | |
index | int | |
count | int | |
return | void |
public Write ( byte data, int index, int count, int>.Action |
||
data | byte | |
index | int | |
count | int | |
callback | int>.Action | |
return | void |
public Write ( int offset, ArraySegment |
||
offset | int | |
data | ArraySegment |
|
return | void |
public Write ( int offset, ArraySegment |
||
offset | int | |
data | ArraySegment |
|
callback | int>.Action | |
return | void |
public Write ( int offset, Loop loop, ArraySegment |
||
offset | int | |
loop | Loop | |
data | ArraySegment |
|
return | void |
public Write ( int offset, byte data, int>.Action |
||
offset | int | |
data | byte | |
callback | int>.Action | |
return | void |
public Write ( int offset, byte data, int index, int count ) : void | ||
offset | int | |
data | byte | |
index | int | |
count | int | |
return | void |
public Write ( int offset, byte data, int index, int count, int>.Action |
||
offset | int | |
data | byte | |
index | int | |
count | int | |
callback | int>.Action | |
return | void |