System.IO.IsolatedStorage.IsolatedStorageFile.GetLastWriteTime C# (CSharp) 메소드

GetLastWriteTime() 공개 메소드

public GetLastWriteTime ( string path ) : System.DateTimeOffset
path string
리턴 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

예제 #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