System.IO.MultiplexingWin32WinRTFileSystem.Open C# (CSharp) Méthode

Open() public méthode

public Open ( string fullPath, FileMode mode, FileAccess access, FileShare share, int bufferSize, FileOptions options, FileStream parent ) : System.IO.FileStreamBase
fullPath string
mode FileMode
access FileAccess
share FileShare
bufferSize int
options FileOptions
parent FileStream
Résultat System.IO.FileStreamBase
        public override FileStreamBase Open(string fullPath, FileMode mode, FileAccess access, FileShare share, int bufferSize, FileOptions options, FileStream parent)
        {
            bool isCreate = mode != FileMode.Open && mode != FileMode.Truncate;
            return Select(fullPath, isCreate).Open(fullPath, mode, access, share, bufferSize, options, parent);
        }