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

IsolatedStorageFileEnumerator() 개인적인 메소드

private IsolatedStorageFileEnumerator ( IsolatedStorageScope scope ) : System
scope IsolatedStorageScope
리턴 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();
        }