System.IO.MultiplexingWin32WinRTFileSystem.Open C# (CSharp) Method

Open() public method

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
return 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);
        }