csDataServerPlugin.PoiGraphic.TappedByExternalMapControlMapGesture C# (CSharp) Метод

TappedByExternalMapControlMapGesture() публичный Метод

This function is calles from multiple places outside the class!!
public TappedByExternalMapControlMapGesture ( MapPoint tapPos ) : void
tapPos MapPoint
Результат void
        public void TappedByExternalMapControlMapGesture(MapPoint tapPos)
        {
            if (DateTime.Now < lastTap.AddMilliseconds(500)) return;
            lastTap = DateTime.Now;
            mLastKnownTapPoint = tapPos;
            EndTapped();

        }