Skip to main content

class Wacom::Kiosk::Integrator::ActiveClient

The model, representing tablet clients that have active connection to the server.

Summary

MembersDescriptions
{property} string NameThe client name.
{property} string ClientAddressThe client IP address and port. Format: .
{property} NamedPipeServerStream pipeStreamThe client NamedPipeServerStream.
{property} DocumentContext DocumentContextThe 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

  • namedPipeServerStream The clients NamedPipeServerStream.

public inline ActiveClient(string name,string address)

The constructor for a connected tablet client using TCP.

Parameters

  • name The client name.

  • address The 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

  • documentPage The document page index.

  • documentPath The document path, placed on the integrator's machine.