Show / Hide Table of Contents

Class KeyboardInfo

Information about a keyboard device that is connected to a CloudPRNT client.

Inheritance
System.Object
KeyboardInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: StarMicronics.CloudPrnt.CpMessage
Assembly: cs.temp.dll.dll
Syntax
public class KeyboardInfo

Properties

keyPresses

Base 64 encoded sequence of key press events since the last poll.

Declaration
public string keyPresses { get; set; }
Property Value
Type Description
System.String

name

Logical device name for the keyboard. This name may be used to request operations of this keyboard, such as claiming it to receive key press events

Declaration
public string name { get; set; }
Property Value
Type Description
System.String

status

Information about the status of the keyboard at the time the CloudPRNT client issued it's last poll.

Declaration
public KeyboardStatus status { get; set; }
Property Value
Type Description
KeyboardStatus
In This Article
Back to top