C# Class StoredQueries.StoredQuery

Implements the IStoredQuery interface.
Inheritance: IStoredQuery
Datei anzeigen Open project: DigitalGlobe/DGConnect-ESRI

Public Methods

Method 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 method

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 ///
return bool

DeleteQuery() public method

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 ///
return bool

GetQueries() public method

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 ///
return List

GetQueries() public method

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

StoredQuery() public method

Initializes a new instance of the StoredQuery class.
public StoredQuery ( ) : System
return System

StoredQuery() public method

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. ///
return System

UpdateQuery() public method

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. ///
return bool

UpdateQuery() public method

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. ///
return bool