LocalMapTileDataSource.UriRequested 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于要求 LocalMapTileDataSource的磚時。 MapTileUriRequestedEventArgs的實例會提供此事件的資料。
// Register
event_token UriRequested(TypedEventHandler<LocalMapTileDataSource, MapTileUriRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void UriRequested(event_token const* cookie) const;
// Revoke with event_revoker
LocalMapTileDataSource::UriRequested_revoker UriRequested(auto_revoke_t, TypedEventHandler<LocalMapTileDataSource, MapTileUriRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<LocalMapTileDataSource,MapTileUriRequestedEventArgs> UriRequested;
function onUriRequested(eventArgs) { /* Your code */ }
localMapTileDataSource.addEventListener("urirequested", onUriRequested);
localMapTileDataSource.removeEventListener("urirequested", onUriRequested);
- or -
localMapTileDataSource.onurirequested = onUriRequested;
Public Custom Event UriRequested As TypedEventHandler(Of LocalMapTileDataSource, MapTileUriRequestedEventArgs)