SenseNet.ContentRepository.ImportContext.ImportContext C# (CSharp) Method

ImportContext() public method

public ImportContext ( XmlNodeList fieldData, string currentDirectory, bool isNewContent, bool needToValidate, bool updateReferences ) : System
fieldData System.Xml.XmlNodeList
currentDirectory string
isNewContent bool
needToValidate bool
updateReferences bool
return System
		public ImportContext(XmlNodeList fieldData, string currentDirectory, bool isNewContent, bool needToValidate, bool updateReferences)
		{
			CurrentDirectory = currentDirectory;
			FieldData = fieldData;
			IsNewContent = isNewContent;
			NeedToValidate = needToValidate;
			UpdateReferences = updateReferences;
			PostponedReferenceFields = new List<string>();
		}