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

属性值

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)

适用于