Guest User

Untitled

a guest
Feb 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. /// <summary>
  2. /// Interface representing the Network Connectivity features.
  3. /// </summary>
  4. public interface IConnectivity
  5. {
  6. /// <summary>
  7. /// Gets the network access.
  8. /// </summary>
  9. NetworkAccess NetworkAccess { get; }
  10.  
  11. /// <summary>
  12. /// Gets the connection profiles.
  13. /// </summary>
  14. IEnumerable<ConnectionProfile> Profiles { get; }
  15.  
  16. /// <summary>
  17. /// Gets the connectivity changed observable sequence.
  18. /// </summary>
  19. IObservable<ConnectivityChangedEventArgs> ConnectivityChanged { get; }
  20. }
Add Comment
Please, Sign In to add comment