SuperSocket.Ftp.FtpService.DataConnection.GetStream C# (CSharp) 메소드

GetStream() 공개 메소드

Gets the stream.
public GetStream ( SuperSocket.Ftp.FtpService.FtpContext context ) : Stream
context SuperSocket.Ftp.FtpService.FtpContext The context.
리턴 Stream
        public Stream GetStream(FtpContext context)
        {
            if (m_Stream == null)
            {
                InitStream(context);
            }

            return m_Stream;
        }