SpcPanelInfo

Overview of SpcPanelInfo goes here.

SpcPanelInfo Properties

Item -> BaseInfo -> SpcPanelInfo

Field Type Inherited from Description
Href String Item Gets or sets the Href value
CommonName String BaseInfo Gets or sets the CommonName value
ConcurrencyVersion Nullable<Int64> BaseInfo Gets or sets the ConcurrencyVersion value
InFolderHref String BaseInfo Gets or sets the InFolderHref value
InFolderKey String BaseInfo Gets or sets the InFolderKey value
IsGlobal Boolean BaseInfo Gets or sets the IsGlobal value
Key String BaseInfo Gets or sets the Key value
Links List<Link> BaseInfo Gets or sets the Links value
Metadata MetadataItem[] BaseInfo Gets or sets the Metadata value
Monikers MonikerItem[] BaseInfo Gets or sets the Monikers value
Notes NoteInfo[] BaseInfo Gets or sets the Notes value
ObjectLinks ObjectLinkItem[] BaseInfo Gets or sets the ObjectLinks value
Tags String[] BaseInfo Gets or sets the Tags value
EncIV Byte[] SpcPanelInfo Gets or sets the EncIV value
EncKeyBin Byte[] SpcPanelInfo Gets or sets the EncKeyBin value
FirmwareVersion String SpcPanelInfo Gets or sets the FirmwareVersion value
Password String SpcPanelInfo Gets or sets the Password value
ProductTitle String SpcPanelInfo Gets or sets the ProductTitle value
RegistrationId String SpcPanelInfo Gets or sets the RegistrationId value
SerialNumber String SpcPanelInfo Gets or sets the SerialNumber value
SessionId Int32 SpcPanelInfo Gets or sets the SessionId value
UserName String SpcPanelInfo Gets or sets the UserName value

JSON Structure of SpcPanelInfo

{
   "Href"	:	"String",
   "CommonName"	:	"String",
   "ConcurrencyVersion"	:	"Nullable\<Int64\>",
   "InFolderHref"	:	"String",
   "InFolderKey"	:	"String",
   "IsGlobal"	:	"Boolean",
   "Key"	:	"String",
   "Links"	:	"List\<[Link](/object-model/link)\>",
   "Metadata"	:	"[MetadataItem](/object-model/metadataitem)[]",
   "Monikers"	:	"[MonikerItem](/object-model/monikeritem)[]",
   "Notes"	:	"[NoteInfo](/object-model/noteinfo)[]",
   "ObjectLinks"	:	"[ObjectLinkItem](/object-model/objectlinkitem)[]",
   "Tags"	:	"String[]",
   "EncIV"	:	"Byte[]",
   "EncKeyBin"	:	"Byte[]",
   "FirmwareVersion"	:	"String",
   "Password"	:	"String",
   "ProductTitle"	:	"String",
   "RegistrationId"	:	"String",
   "SerialNumber"	:	"String",
   "SessionId"	:	"Int32",
   "UserName"	:	"String"
}

Add Spc Panel Async

Example in C#

// Returns: SpcPanelInfo
var spcPanelInfo = await client.AddSpcPanelAsync(FolderInfo folder, SpcPanelInfo spcPanel);

Delete Spc Panel Async

Example in C#

// Returns: nothing
await client.DeleteSpcPanelAsync(SpcPanelInfo spcPanel);

Get Spc Panel By Registration Id Async

Example in C#

// Returns: SpcPanelInfo
var spcPanelInfo = await client.GetSpcPanelByRegistrationIdAsync(FolderInfo folder, String RegistrationId);

Get Spc Panel By Session Id Async

Example in C#

// Returns: SpcPanelInfo
var spcPanelInfo = await client.GetSpcPanelBySessionIdAsync(FolderInfo folder, Int32 SessionId);

Get Spc Panels Async

Example in C#

// Returns: IEnumerable<SpcPanelInfo>
var spcPanelInfo = await client.GetSpcPanelsAsync(FolderInfo folder);

Update Spc Panel Async

Example in C#

// Returns: nothing
await client.UpdateSpcPanelAsync(SpcPanelInfo spcPanel);