CmisSync.Lib.Accumulator.RemoteObjectFetcher.RemoteObjectFetcher C# (CSharp) Метод

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

Initializes a new instance of the RemoteObjectFetcher class. Fetches remote CMIS Objects and adds them to the handled events.
public RemoteObjectFetcher ( ISession session, IMetaDataStorage storage ) : System
session ISession Session to be used.
storage IMetaDataStorage Storage to look for mapped objects.
Результат System
        public RemoteObjectFetcher(ISession session, IMetaDataStorage storage) {
            if (session == null) {
                throw new ArgumentNullException("session");
            }

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

            this.session = session;
            this.storage = storage;
            this.operationContext = OperationContextFactory.CreateNonCachingPathIncludingContext(this.session);
        }