Interface IReachability
An interface for describing whether a given URL is reachable via network connection or not.
Namespace: Couchbase.Lite.DI
Assembly: Couchbase.Lite.dll
Syntax
public interface IReachability
Properties
| Improve this Doc View SourceUrl
The URL to track connectivity to
Declaration
Uri Url { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Methods
| Improve this Doc View SourceStart()
Start monitoring for changes in network status
Declaration
void Start()
Stop()
Stop monitoring for changes in network status
Declaration
void Stop()
Events
| Improve this Doc View SourceStatusChanged
Fired when the status of connectivity changes
Declaration
event EventHandler<NetworkReachabilityChangeEventArgs> StatusChanged
Event Type
Type | Description |
---|---|
System.EventHandler<NetworkReachabilityChangeEventArgs> |