SenseNet.ContentRepository.Storage.ActiveSchema.GetNodeAttributeDataType C# (CSharp) Метод

GetNodeAttributeDataType() публичный статический Метод

Gets the type of the node attribute data.
public static GetNodeAttributeDataType ( NodeAttribute attribute ) : DataType
attribute NodeAttribute
Результат DataType
		public static DataType GetNodeAttributeDataType(NodeAttribute attribute)
		{
			DataType result;
			if (_nodeAttributeDataTypes.TryGetValue(attribute, out result))
				return result;
			throw new NotImplementedException(String.Concat(SR.Exceptions.Schema.Msg_NodeAttributeDoesNotEsist, " ", attribute));
		}