C# Class StoredQueries.StoredQuery

Implements the IStoredQuery interface.
Inheritance: IStoredQuery
Afficher le fichier Open project: DigitalGlobe/DGConnect-ESRI

Méthodes publiques

Méthode Description
DeleteQuery ( IGbdxComms comms, NetObject netObject ) : bool

Delete a query from the stored service.

DeleteQuery ( NetObject netObject ) : bool

Delete a query from the stored service.

GetQueries ( IGbdxComms comms, NetObject netObject ) : List

Get the queries stored in the stored query service.

GetQueries ( NetObject netObject ) : List

Get the queries stored in the stored query service.

StoredQuery ( ) : System

Initializes a new instance of the StoredQuery class.

StoredQuery ( IGbdxComms comms ) : System

Initializes a new instance of the StoredQuery class.

UpdateQuery ( IGbdxComms comms, NetObject netObject, SavedQuery itemToAddUpdate ) : bool

Add/Update a query with the stored query service.

UpdateQuery ( NetObject netObject, SavedQuery itemToAddUpdate ) : bool

Add/Update a query with the stored query service.

Method Details

DeleteQuery() public méthode

Delete a query from the stored service.
public DeleteQuery ( IGbdxComms comms, NetObject netObject ) : bool
comms IGbdxComms /// used for communicating with the stored query service. ///
netObject NetworkConnections.NetObject /// the network object to be used in communicating with stored query service ///
Résultat bool

DeleteQuery() public méthode

Delete a query from the stored service.
public DeleteQuery ( NetObject netObject ) : bool
netObject NetworkConnections.NetObject /// the network object to be used in communicating with stored query service ///
Résultat bool

GetQueries() public méthode

Get the queries stored in the stored query service.
public GetQueries ( IGbdxComms comms, NetObject netObject ) : List
comms IGbdxComms /// used for communicating with the stored query service. ///
netObject NetworkConnections.NetObject /// the network object to be used in communicating with stored query service ///
Résultat List

GetQueries() public méthode

Get the queries stored in the stored query service.
public GetQueries ( NetObject netObject ) : List
netObject NetworkConnections.NetObject /// The net object. ///
Résultat List

StoredQuery() public méthode

Initializes a new instance of the StoredQuery class.
public StoredQuery ( ) : System
Résultat System

StoredQuery() public méthode

Initializes a new instance of the StoredQuery class.
public StoredQuery ( IGbdxComms comms ) : System
comms IGbdxComms /// Interface that defines how to talk with GBDX Cloud services. ///
Résultat System

UpdateQuery() public méthode

Add/Update a query with the stored query service.
public UpdateQuery ( IGbdxComms comms, NetObject netObject, SavedQuery itemToAddUpdate ) : bool
comms IGbdxComms /// used for communicating with the stored query service. ///
netObject NetworkConnections.NetObject /// the network object to be used in communicating with stored query service ///
itemToAddUpdate SavedQuery /// The item to add update. ///
Résultat bool

UpdateQuery() public méthode

Add/Update a query with the stored query service.
public UpdateQuery ( NetObject netObject, SavedQuery itemToAddUpdate ) : bool
netObject NetworkConnections.NetObject /// the network object to be used in communicating with stored query service ///
itemToAddUpdate SavedQuery /// The item to add update. ///
Résultat bool