Beispiel #1
0
        public IChangesObservable <DocumentChange> ForDocumentsOfType(Type type)
        {
            if (type == null)
            {
                throw new ArgumentNullException(nameof(type));
            }

            var typeName = _conventions.FindClrTypeName(type);

            return(ForDocumentsOfType(typeName));
        }