CmisSync.Lib.FileTransmission.Transmission.Transmission C# (CSharp) Метод

Transmission() публичный Метод

Initializes a new instance of the CmisSync.Lib.FileTransmission.Transmission class.
public Transmission ( TransmissionType type, string path, string cachePath = null ) : System
type TransmissionType /// Type of the transmission. ///
path string /// Path to the file of the transmission. ///
cachePath string /// If a download runs and a cache file is used, this should be the path to the cache file ///
Результат System
        public Transmission(TransmissionType type, string path, string cachePath = null) {
            if (path == null) {
                throw new ArgumentNullException("path");
            }

            this.type = type;
            this.Path = path;
            this.CachePath = cachePath;
        }

Same methods

Transmission::Transmission ( ) : System