共用方式為


WaitForChangedResult.Name 屬性

定義

取得或設定變更的檔案或目錄名稱。

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string? Name { get; set; }
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String

屬性值

變更的檔案或目錄名稱。

範例

以下範例展示了該 Name 性質。 此程式碼範例是結構中提供 WaitForChangedResult 較大範例的一部分。

' Suspend the calling thread until the file has been deleted.
Dim cr As IO.WaitForChangedResult = fsw.WaitForChanged(WatcherChangeTypes.Deleted)

' Tell the user the file is deleted and exit.
Console.WriteLine("The {0} files is deleted; program is exiting", cr.Name)

適用於