CmisSync.Lib.Producer.Crawler.DescendantsTreeCollection.DescendantsTreeCollection C# (CSharp) Метод

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

Initializes a new instance of the CmisSync.Lib.Producer.Crawler.DescendantsTreeCollection struct.
/// The exception that is thrown when a /// null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument. ///
public DescendantsTreeCollection ( IObjectTree storedTree, IObjectTree localTree, IObjectTree remoteTree ) : System
storedTree IObjectTree /// Stored tree. ///
localTree IObjectTree /// Local tree. ///
remoteTree IObjectTree /// Remote tree. ///
Результат System
        public DescendantsTreeCollection(IObjectTree<IMappedObject> storedTree, IObjectTree<IFileSystemInfo> localTree, IObjectTree<IFileableCmisObject> remoteTree) : this() {
            if (storedTree == null) {
                throw new ArgumentNullException("storedTree");
            }

            if (localTree == null) {
                throw new ArgumentNullException("localTree");
            }

            if (remoteTree == null) {
                throw new ArgumentNullException("remoteTree");
            }

            this.StoredTree = storedTree;
            this.LocalTree = localTree;
            this.RemoteTree = remoteTree;
        }
DescendantsTreeCollection