Kimono.KTimeZone.UpdateBase C# (CSharp) Méthode

UpdateBase() public méthode

Update the definition of the time zone to be identical to another KTimeZone instance. A prerequisite is that the two instances must have the same name. The main purpose of this method is to allow updates of the time zone definition by derived classes without invalidating pointers to the instance (particularly pointers held by KDateTime objects). Note that the KTimeZoneData object and KTimeZoneSource pointer are not updated: the caller class should do this itself by calling setData(). name="other" time zone whose definition is to be used
public UpdateBase ( KTimeZone other ) : bool
other KTimeZone
Résultat bool
        public bool UpdateBase(KTimeZone other)
        {
            return (bool) interceptor.Invoke("updateBase#", "updateBase(const KTimeZone&)", typeof(bool), typeof(KTimeZone), other);
        }