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));
		}