/// <summary>
 /// Reads the <see cref="SciterValue"/> as a <see cref="UInt32"/>
 /// </summary>
 /// <param name="sciterValue"></param>
 /// <param name="default">Default value to return on error</param>
 /// <returns></returns>
 public static uint AsUInt32(this SciterValue sciterValue, uint @default = default(uint))
 {
     return(sciterValue.AsUInt32Internal(@default: @default));
 }