nClam.ClamClient.ClamClient C# (CSharp) 메소드

ClamClient() 공개 메소드

A class to connect to a ClamAV server and request virus scans
public ClamClient ( string server, int port = 3310 ) : System
server string Address to the ClamAV server
port int Port which the ClamAV server is listening on
리턴 System
        public ClamClient(string server, int port = 3310)
        {
            MaxChunkSize = 131072; //128k
            MaxStreamSize = 26214400; //25mb
            Server = server;
            Port = port;
        }