Windows アプリケーションでリフレクションを使用してファイル パスを取得していますが、Silverlight では取得していません。
以下のコードを使用しました:
IsolatedStorageFile store = IsolatedStorageFile.GetStore(IsolatedStorageScope.User | IsolatedStorageScope.Assembly, null, null);
IsolatedStorageFileStream stream = new IsolatedStorageFileStream("Text.log", FileMode.Create, store);
// Retrieve the actual path of the file using reflection.
string path = stream.GetType().GetField("m_FullPath", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(stream).ToString();
Silverlight は、プライベート、保護、および内部 (アセンブリの外部) の反射をサポートしていません。
Silverlight でファイル パスを取得する方法を教えてください。