Server.FileStreamFactory.Create C# (CSharp) Method

Create() public method

public Create ( string filePath ) : Stream
filePath string
return System.IO.Stream
        public Stream Create(string filePath)
        {
            return new FileStream(filePath, FileMode.Open);
        }
FileStreamFactory