Praeclarum.App.DocumentReference.DocumentReference C# (CSharp) Méthode

DocumentReference() public méthode

public DocumentReference ( IFile file, DocumentConstructor dctor, bool isNew ) : System
file IFile
dctor DocumentConstructor
isNew bool
Résultat System
		public DocumentReference (IFile file, DocumentConstructor dctor, bool isNew)
		{
			if (file == null)
				throw new ArgumentNullException ("file");
			if (dctor == null)
				throw new ArgumentNullException ("dctor");
			File = file;
			IsNew = isNew;
			this.dctor = dctor;
		}