Method | Description | |
---|---|---|
AppendLinesAsync ( string absolutePath, IEnumerable |
Appends lines of text to the file at the specified path or URI.
|
|
AppendLinesAsync ( string absolutePath, IEnumerable |
Appends lines of text to the file at the specified path or URI using the specified character encoding.
|
|
AppendTextAsync ( string absolutePath, string contents ) : System.Threading.Tasks.Task |
Appends text to the file at the specified path or URI.
|
|
AppendTextAsync ( string absolutePath, string contents, UnicodeEncoding encoding ) : System.Threading.Tasks.Task |
Appends text to the file at the specified path or URI using the specified character encoding.
|
|
ReadLinesAsync ( string absolutePath ) : Task |
Reads the contents of the file at the specified path or URI and returns lines of text.
|
|
ReadLinesAsync ( string absolutePath, UnicodeEncoding encoding ) : Task |
Reads the contents of the file at the specified path or URI using the specified character encoding and returns lines of text.
|
|
ReadTextAsync ( string absolutePath ) : Task |
Reads the contents of the file at the specified path or URI and returns text.
|
|
ReadTextAsync ( string absolutePath, UnicodeEncoding encoding ) : Task |
Reads the contents of the file at the specified path or URI using the specified character encoding and returns text.
|
|
WriteLinesAsync ( string absolutePath, IEnumerable |
Writes lines of text to the file at the specified path or URI.
|
|
WriteLinesAsync ( string absolutePath, IEnumerable |
Writes lines of text to the file at the specified path or URI using the specified character encoding.
|
|
WriteTextAsync ( string absolutePath, string contents ) : System.Threading.Tasks.Task |
Writes text to the file at the specified path or URI.
|
|
WriteTextAsync ( string absolutePath, string contents, UnicodeEncoding encoding ) : System.Threading.Tasks.Task |
Writes text to the file at the specified path or URI using the specified character encoding.
|
public static AppendLinesAsync ( string absolutePath, IEnumerable |
||
absolutePath | string | The path or URI of the file that the lines are appended to. |
lines | IEnumerable |
The list of text strings to append as lines. |
return | System.Threading.Tasks.Task |
public static AppendLinesAsync ( string absolutePath, IEnumerable |
||
absolutePath | string | The path or URI of the file that the lines are appended to. |
lines | IEnumerable |
The list of text strings to append as lines. |
encoding | UnicodeEncoding | The character encoding of the file. |
return | System.Threading.Tasks.Task |
public static AppendTextAsync ( string absolutePath, string contents ) : System.Threading.Tasks.Task | ||
absolutePath | string | The path of the file that the text is appended to. |
contents | string | The text to append. |
return | System.Threading.Tasks.Task |
public static AppendTextAsync ( string absolutePath, string contents, UnicodeEncoding encoding ) : System.Threading.Tasks.Task | ||
absolutePath | string | The path of the file that the text is appended to. |
contents | string | The text to append. |
encoding | UnicodeEncoding | The character encoding of the file. |
return | System.Threading.Tasks.Task |
public static ReadLinesAsync ( string absolutePath ) : Task |
||
absolutePath | string | The path of the file to read. |
return | Task |
public static ReadLinesAsync ( string absolutePath, UnicodeEncoding encoding ) : Task |
||
absolutePath | string | The path of the file to read. |
encoding | UnicodeEncoding | The character encoding of the file. |
return | Task |
public static ReadTextAsync ( string absolutePath ) : Task |
||
absolutePath | string | The path of the file to read. |
return | Task |
public static ReadTextAsync ( string absolutePath, UnicodeEncoding encoding ) : Task |
||
absolutePath | string | The path of the file to read. |
encoding | UnicodeEncoding | The character encoding of the file. |
return | Task |
public static WriteLinesAsync ( string absolutePath, IEnumerable |
||
absolutePath | string | The path of the file that the lines are written to. |
lines | IEnumerable |
The list of text strings to append as lines. |
return | System.Threading.Tasks.Task |
public static WriteLinesAsync ( string absolutePath, IEnumerable |
||
absolutePath | string | The path of the file that the lines are written to. |
lines | IEnumerable |
The list of text strings to append as lines. |
encoding | UnicodeEncoding | The character encoding of the file. |
return | System.Threading.Tasks.Task |
public static WriteTextAsync ( string absolutePath, string contents ) : System.Threading.Tasks.Task | ||
absolutePath | string | The path of the file that the text is written to. |
contents | string | The text to write. |
return | System.Threading.Tasks.Task |
public static WriteTextAsync ( string absolutePath, string contents, UnicodeEncoding encoding ) : System.Threading.Tasks.Task | ||
absolutePath | string | The path of the file that the text is written to. |
contents | string | The text to write. |
encoding | UnicodeEncoding | The character encoding of the file. |
return | System.Threading.Tasks.Task |