FtpWebResponse.LastModified 属性    
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取上次修改 FTP 服务器上的文件的日期和时间。
public:
 property DateTime LastModified { DateTime get(); };public DateTime LastModified { get; }member this.LastModified : DateTimePublic ReadOnly Property LastModified As DateTime属性值
包含上次修改文件的日期和时间的 DateTime。
示例
下面的代码示例显示上次修改 FTP 服务器上的文件的日期和时间。
public static bool GetDateTimestampOnServer (Uri serverUri)
{
    // The serverUri should start with the ftp:// scheme.
    if (serverUri.Scheme != Uri.UriSchemeFtp)
    {
        return false;
    }
    // Get the object used to communicate with the server.
    FtpWebRequest request = (FtpWebRequest)WebRequest.Create (serverUri);
    request.Method = WebRequestMethods.Ftp.GetDateTimestamp;
    FtpWebResponse response = (FtpWebResponse)request.GetResponse ();
    Console.WriteLine ("{0} {1}",serverUri,response.LastModified);
    // The output from this method will vary depending on the
    // file specified and your regional settings. It is similar to:
    // ftp://contoso.com/Data.txt 4/15/2003 10:46:02 AM
    return true;
}
注解
属性 LastModified 返回 方法请求 GetDateTimestamp 的数据。 对于使用任何其他方法发送的请求, LastModified 返回 MinValue。