Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IS2sEndpoint.cs
1using System;
2using System.Threading.Tasks;
4
6{
10 public interface IS2SEndpoint : IEndpoint
11 {
15 Guid Id { get; }
16
21 {
22 get;
23 }
24
29 {
30 get;
31 }
32
36 DateTime Connected
37 {
38 get;
39 }
40
44 [Obsolete("Use DisposeAsync(string) instead.")]
45 new Task DisposeAsync();
46
51 Task DisposeAsync(string Reason);
52 }
53}
Represents a case-insensitive string.
Interface for XMPP endpoints
Definition: IEndpoint.cs:9
Interface for XMPP S2S endpoints
Definition: IS2sEndpoint.cs:11
DateTime Connected
When endpoint connected.
Definition: IS2sEndpoint.cs:37
CaseInsensitiveString LocalDomain
Local domain name.
Definition: IS2sEndpoint.cs:21
CaseInsensitiveString RemoteDomain
Connection to domain.
Definition: IS2sEndpoint.cs:29
Task DisposeAsync(string Reason)
Disposes of the object, asynchronously.
new Task DisposeAsync()
Disposes of the object, asynchronously.