System.Net.Tests.FtpWebRequestTest.FtpExecutionMode.FtpExecutionMode C# (CSharp) Method

FtpExecutionMode() public method

public FtpExecutionMode ( bool useSsl, bool usePassive, bool useAsync, bool useOldStyleAsync ) : System.Collections.Generic
useSsl bool
usePassive bool
useAsync bool
useOldStyleAsync bool
return System.Collections.Generic
            public FtpExecutionMode(bool useSsl, bool usePassive, bool useAsync, bool useOldStyleAsync)
            {
                UseSsl = useSsl;
                UsePassive = usePassive;
                UseAsync = useAsync;
                UseOldStyleAsync = useOldStyleAsync;
            }
        }
FtpWebRequestTest.FtpExecutionMode