SenseNet.ContentRepository.Field.GetHandlerSlot C# (CSharp) Method

GetHandlerSlot() protected method

Gets the type of the slot.
A slot type may represent numeros CLR types in compile time. In runtime, however a single type from the previously defined enumeration is assigned to this slot. This function returns this type in runtime.
protected GetHandlerSlot ( int slotIndex ) : Type
slotIndex int Index of the slot of which the type is needed
return System.Type
		protected Type GetHandlerSlot(int slotIndex)
		{
			return this.FieldSetting.GetHandlerSlot(slotIndex);
		}