System.IO.IsolatedStorage.IsolatedStorageFile.GetLastAccessTime C# (CSharp) Method

GetLastAccessTime() public method

public GetLastAccessTime ( string path ) : System.DateTimeOffset
path string
return 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

Esempio n. 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