SenseNet.ContentRepository.Storage.Schema.PropertyType.PropertyType C# (CSharp) Метод

PropertyType() приватный Метод

private PropertyType ( ISchemaRoot schemaRoot, string name, int id, DataType dataType, int mapping, bool isContentListProperty ) : System
schemaRoot ISchemaRoot
name string
id int
dataType DataType
mapping int
isContentListProperty bool
Результат System
		internal PropertyType(ISchemaRoot schemaRoot, string name, int id, DataType dataType, int mapping, bool isContentListProperty)
			: base(schemaRoot, name, id)
		{
			_dataType = dataType;
			_mapping = mapping;
			_isContentListProperty = isContentListProperty;
			if (!isContentListProperty)
				CheckMapping();
		}