Click or drag to resize

ServerClientModel Class

Representation of a MultiModel client on the server.
Inheritance Hierarchy
System.DynamicDynamicObject
  NotifyPropertyChangedBase
    SimpleCustomTypeDescriptor
      GlobalizedProperties
        Demo3D.CommonBindableBase
          Demo3D.MultiModel.ServerServerClientModel

Namespace:  Demo3D.MultiModel.Server
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 18.03.00
Syntax
C#
[TypeConverterAttribute(typeof(ExpandableObjectConverter))]
public class ServerClientModel : BindableBase

The ServerClientModel type exposes the following members.

Constructors
  NameDescription
Public methodServerClientModel
Initializes a new instance of the ServerClientModel.
Public methodServerClientModel(Guid)
Initializes a new instance of the ServerClientModel class with the specified client ID.
Top
Properties
  NameDescription
Public propertyId
The Id of the client.
Public propertyIsConnected
The connected status of the client.
Public propertyName
The name of the client.
Public propertyReceivers
The receivers in the client.
Public propertySenders
The senders in the client.
Top
Methods
  NameDescription
Public methodFindReceiver
Finds a receiver by its ID.
Public methodFindSender
Finds a sender by its ID.
Public methodRaisePropertiesChanged
Raise an PropertyChanged event for each value.
(Inherited from BindableBase.)
Public methodRaisePropertyChanged(PropertyChangedEventArgs)
Raise an PropertyChanged event for the specified value.
(Inherited from BindableBase.)
Public methodRaisePropertyChanged(String)
Raise an PropertyChanged event for the specified value.
(Inherited from BindableBase.)
Protected methodSetINotifyPropertyChangedPropertyT
Checks to see if the property is the same as the specified value. It they're different then set the value and raise an PropertyChanged event. Property changes on the new value are also listened to and, if one occurs, the propertyChangedCallback handler will be invoked.
(Inherited from BindableBase.)
Protected methodSetPropertyT(T, T, PropertyChangedEventArgs)
Checks to see if the property is the same as the specified value. It they're different then set the value and raise an PropertyChanged event.
(Inherited from BindableBase.)
Protected methodSetPropertyT(T, T, String)
Checks to see if the property is the same as the specified value. It they're different then set the value and raise an PropertyChanged event.
(Inherited from BindableBase.)
Public methodToString
Returns the name of the server client model.
(Overrides SimpleCustomTypeDescriptor.ToString.)
Top
Events
  NameDescription
Public eventOnConnectedUpdated
Event that is raised when the connected status of the server client model is updated.
Public eventOnSendersReceiversUpdated
Event that is raised when senders and receivers are updated.
Public eventOnUpdated
Event that is raised when the server client model is updated.
Top
See Also