Show / Hide Table of Contents

    Class SocketEndpointConnectionDelta

    Wrapper class for announcing the current state of network connections

    Inheritance
    Object
    SocketEndpointConnectionDelta
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Microsoft.MixedReality.SpectatorView
    Assembly: cs.temp.dll.dll
    Syntax
    public class SocketEndpointConnectionDelta

    Constructors

    SocketEndpointConnectionDelta(IReadOnlyList<SocketEndpoint>, IReadOnlyList<SocketEndpoint>, IReadOnlyList<SocketEndpoint>)

    Declaration
    public SocketEndpointConnectionDelta(IReadOnlyList<SocketEndpoint> addedConnections, IReadOnlyList<SocketEndpoint> removedConnections, IReadOnlyList<SocketEndpoint> continuedConnections)
    Parameters
    Type Name Description
    IReadOnlyList<SocketEndpoint> addedConnections
    IReadOnlyList<SocketEndpoint> removedConnections
    IReadOnlyList<SocketEndpoint> continuedConnections

    Properties

    AddedConnections

    Network connections that were newly added.

    Declaration
    public IReadOnlyList<SocketEndpoint> AddedConnections { get; }
    Property Value
    Type Description
    IReadOnlyList<SocketEndpoint>

    ContinuedConnections

    Network connections that already existed.

    Declaration
    public IReadOnlyList<SocketEndpoint> ContinuedConnections { get; }
    Property Value
    Type Description
    IReadOnlyList<SocketEndpoint>

    HasConnections

    Returns true if any connections exist.

    Declaration
    public bool HasConnections { get; }
    Property Value
    Type Description
    Boolean

    RemovedConnections

    Network connections that were recently lost.

    Declaration
    public IReadOnlyList<SocketEndpoint> RemovedConnections { get; }
    Property Value
    Type Description
    IReadOnlyList<SocketEndpoint>
    Back to top Generated by DocFX