System.IO.IsolatedStorage.IsolatedStorageFileEnumerator.IsolatedStorageFileEnumerator C# (CSharp) Méthode

IsolatedStorageFileEnumerator() private méthode

private IsolatedStorageFileEnumerator ( IsolatedStorageScope scope ) : System
scope IsolatedStorageScope
Résultat System
        internal IsolatedStorageFileEnumerator(IsolatedStorageScope scope) 
        {
            m_Scope    = scope;
            m_fiop     = IsolatedStorageFile.GetGlobalFileIOPerm(scope);
            m_rootDir  = IsolatedStorageFile.GetRootDir(scope);
            m_fileEnum = new TwoLevelFileEnumerator(m_rootDir);
            Reset();
        }