class Wacom::Kiosk::Integrator::ActiveClient
The model, representing tablet clients that have active connection to the server.
Summary
| Members | Descriptions |
|---|---|
{property} string Name | The client name. |
{property} string ClientAddress | The client IP address and port. Format: . |
{property} NamedPipeServerStream pipeStream | The client NamedPipeServerStream. |
{property} DocumentContext DocumentContext | The representation of the current document state, that the tablet client is viewing. |
public inline ActiveClient(NamedPipeServerStream namedPipeServerStream) | The constructor for a connected tablet client using Named Pipes. |
public inline ActiveClient(string name,string address) | The constructor for a connected tablet client using TCP. |
public inline void UpdateDocumentContext(int documentPage,string documentPath) | Updated the state of the document, that is viewed by the tablet client. |
Members
{property} string Name
The client name.
{property} string ClientAddress
The client IP address and port. Format: .
{property} NamedPipeServerStream pipeStream
The client NamedPipeServerStream.
{property} DocumentContext DocumentContext
The representation of the current document state, that the tablet client is viewing.
public inline ActiveClient(NamedPipeServerStream namedPipeServerStream)
The constructor for a connected tablet client using Named Pipes.
Parameters
namedPipeServerStreamThe clients NamedPipeServerStream.
public inline ActiveClient(string name,string address)
The constructor for a connected tablet client using TCP.
Parameters
-
nameThe client name. -
addressThe client IP address. Format:
public inline void UpdateDocumentContext(int documentPage,string documentPath)
Updated the state of the document, that is viewed by the tablet client.
Parameters
-
documentPageThe document page index. -
documentPathThe document path, placed on the integrator's machine.