PathIO.AppendTextAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
AppendTextAsync(String, String) |
Aggiunge testo al file nel percorso specificato o nell'URI (Uniform Resource Identifier). |
AppendTextAsync(String, String, UnicodeEncoding) |
Aggiunge testo al file nel percorso specificato o nell'URI (Uniform Resource Identifier) usando la codifica dei caratteri specificata. |
AppendTextAsync(String, String)
Aggiunge testo al file nel percorso specificato o nell'URI (Uniform Resource Identifier).
public:
static IAsyncAction ^ AppendTextAsync(Platform::String ^ absolutePath, Platform::String ^ contents);
/// [Windows.Foundation.Metadata.Overload("AppendTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction AppendTextAsync(winrt::hstring const& absolutePath, winrt::hstring const& contents);
[Windows.Foundation.Metadata.Overload("AppendTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(string absolutePath, string contents);
function appendTextAsync(absolutePath, contents)
Public Shared Function AppendTextAsync (absolutePath As String, contents As String) As IAsyncAction
Parametri
- absolutePath
-
String
Platform::String
winrt::hstring
Percorso del file a cui viene aggiunto il testo.
- contents
-
String
Platform::String
winrt::hstring
Testo da accodare.
Restituisce
Al termine di questo metodo non viene restituito alcun oggetto o valore.
- Attributi
Vedi anche
Si applica a
AppendTextAsync(String, String, UnicodeEncoding)
Aggiunge testo al file nel percorso specificato o nell'URI (Uniform Resource Identifier) usando la codifica dei caratteri specificata.
public:
static IAsyncAction ^ AppendTextAsync(Platform::String ^ absolutePath, Platform::String ^ contents, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction AppendTextAsync(winrt::hstring const& absolutePath, winrt::hstring const& contents, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(string absolutePath, string contents, UnicodeEncoding encoding);
function appendTextAsync(absolutePath, contents, encoding)
Public Shared Function AppendTextAsync (absolutePath As String, contents As String, encoding As UnicodeEncoding) As IAsyncAction
Parametri
- absolutePath
-
String
Platform::String
winrt::hstring
Percorso del file a cui viene aggiunto il testo.
- contents
-
String
Platform::String
winrt::hstring
Testo da accodare.
- encoding
- UnicodeEncoding
Codifica dei caratteri del file.
Restituisce
Al termine di questo metodo non viene restituito alcun oggetto o valore.
- Attributi