Beispiel #1
0
        public ShredStartupInfo(Uri assemblyPath, string shredName, string shredTypeName, ShredIsolationLevel isolationLevel)
        {
            Platform.CheckForNullReference(assemblyPath, "assemblyPath");
            Platform.CheckForEmptyString(shredName, "shredName");
            Platform.CheckForEmptyString(shredTypeName, "shredTypeName");

            _assemblyPath   = assemblyPath;
            _shredName      = shredName;
            _shredTypeName  = shredTypeName;
            _isolationLevel = isolationLevel;
        }
        public ShredStartupInfo(Uri assemblyPath, string shredName, string shredTypeName, ShredIsolationLevel isolationLevel)
        {
            Platform.CheckForNullReference(assemblyPath, "assemblyPath");
            Platform.CheckForEmptyString(shredName, "shredName");
            Platform.CheckForEmptyString(shredTypeName, "shredTypeName");

            _assemblyPath = assemblyPath;
            _shredName = shredName;
            _shredTypeName = shredTypeName;
        	_isolationLevel = isolationLevel;
        }