/// <summary>
 /// Helper function to check if the element can be converted to the specified type
 /// </summary>
 public bool CanGet(eReturnType Type)
 {
     return((ReturnType != eReturnType.Undefined) && (ReturnType == (ReturnType & Type)));
 }
 /// <summary>
 /// Helper function to check if the element can be converted to the specified type
 /// </summary>
 public bool CanGet(eReturnType Type)
 {
     return (ReturnType != eReturnType.Undefined) && (ReturnType == (ReturnType & Type));
 }