System.IO.IsolatedStorage.IsolatedStorageFile.GetLastAccessTime C# (CSharp) Метод

GetLastAccessTime() публичный Метод

public GetLastAccessTime ( string path ) : System.DateTimeOffset
path string
Результат System.DateTimeOffset
        public System.DateTimeOffset GetLastAccessTime(string path) { throw null; }
        public System.DateTimeOffset GetLastWriteTime(string path) { throw null; }

Same methods

IsolatedStorageFile::GetLastAccessTime ( string path ) : DateTimeOffset

Usage Example

Пример #1
0
 public void GetLastAccessTime_RaisesArgumentException()
 {
     using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly())
     {
         AssertExtensions.Throws <ArgumentException>("path", null, () => isf.GetLastAccessTime("\0bad"));
     }
 }
All Usage Examples Of System.IO.IsolatedStorage.IsolatedStorageFile::GetLastAccessTime