Table of Contents

Class TicketingExposers

Namespace
Skyline.DataMiner.Net.Ticketing
Assembly
SLNetTypes.dll

Defines ticketing exposers. Obsolete. Ticketing is being retired (see DataMiner functionality evolution and retirement).

public class TicketingExposers
Inheritance
TicketingExposers
Extension Methods

Examples

Retrieving tickets by ticket field resolver:

public Ticket[] RetrieveTicketByResolverID(TicketFieldResolver resolver)
{
	var outputTickets = helper.GetTickets(filter: TicketingExposers.ResolverID.Equal(resolver.ID));
return outputTickets.ToArray();

}

Fields

CreationDate

Exposes the CreationDate property of a Ticket instance.

CustomTicketFields

Exposes the CustomTicketFields property of a Ticket instance.

DataMinerID

Exposes the DataMinerID property of the ID of a Ticket instance.

FullID

Exposes the full ID of a Ticket instance.

Module

Exposes the Module property of a Ticket instance.

ResolverID

Exposes the CustomFieldResolverID property of a Ticket instance.

TableName

The table name.

Ticket

Exposes the ToJson() method of a Ticket instance.

TicketID

Exposes the TID property of the ID of a Ticket instance.

TicketLinks

Exposes the file friendly ticket links of a Ticket instance.

UniqueID

Exposes the unique ID of a Ticket instance.

Methods

CreateFullTableDefinition()

Creates the full table definition.

Initialize()

Guarantee that all static fields are initialized. Since C# makes use of the laziest initialization.