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

GetLastWriteTime() public method

public GetLastWriteTime ( string path ) : System.DateTimeOffset
path string
return System.DateTimeOffset
        public System.DateTimeOffset GetLastWriteTime(string path) { throw null; }
        public static System.IO.IsolatedStorage.IsolatedStorageFile GetMachineStoreForApplication() { throw null; }

Same methods

IsolatedStorageFile::GetLastWriteTime ( string path ) : DateTimeOffset

Usage Example

Esempio n. 1
0
 public void GetLastWriteTime_RaisesArgumentException()
 {
     using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForAssembly())
     {
         Assert.Throws<ArgumentException>(() => isf.GetLastWriteTime("\0bad"));
     }
 }
All Usage Examples Of System.IO.IsolatedStorage.IsolatedStorageFile::GetLastWriteTime