コード例 #1
0
ファイル: Storage.cs プロジェクト: travbod57/DatingDiary
        public static void AsyncImageLoad(string fileName, Person person)
        {
            IsolatedStorageFile file = IsolatedStorageFile.GetUserStoreForApplication();

            using (IsolatedStorageFileStream stream = file.OpenFile(fileName, FileMode.Open))
            {
                buffer = new byte[stream.Length];
                ImageAsyncState state = new ImageAsyncState() { Stream = stream, Person = person };
                stream.BeginRead(buffer, 0, buffer.Length, new AsyncCallback(ImageReadCompleted), state);
            }
        }
コード例 #2
0
ファイル: DataEntities.cs プロジェクト: travbod57/DatingDiary
 partial void DeletePerson(Person instance);
コード例 #3
0
ファイル: DataEntities.cs プロジェクト: travbod57/DatingDiary
 partial void UpdatePerson(Person instance);
コード例 #4
0
ファイル: DataEntities.cs プロジェクト: travbod57/DatingDiary
 partial void InsertPerson(Person instance);