Server.FileStreamFactory.Create C# (CSharp) 메소드

Create() 공개 메소드

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