AssetDefinition Constructor (Object, AccessQuery, Boolean) | 
 
            Create a new instance based on the given asset and its associated 
AccessQuery.
            
 
    Namespace: 
   AGI.Foundation.Coverage
    Assembly:
   AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic AssetDefinition(
	Object assetObject,
	AccessQuery query,
	bool isRequired
)
Public Sub New ( 
	assetObject As Object,
	query As AccessQuery,
	isRequired As Boolean
)
public:
AssetDefinition(
	Object^ assetObject, 
	AccessQuery^ query, 
	bool isRequired
)
new : 
        assetObject : Object * 
        query : AccessQuery * 
        isRequired : bool -> AssetDefinitionParameters
- assetObject
 - Type: SystemObject
            The object which represents the asset.  In most cases, this should be a reference to the
            IServiceProvider which is acting as the actual instance of the asset,
            with the query defining how the asset communicates with the coverage target.
             - query
 - Type: AGI.Foundation.AccessAccessQuery
The query which must be satisfied for this asset to provide coverage. - isRequired
 - Type: SystemBoolean
A flag indicating whether this asset must be satisfied in order for any 
            assets to provide coverage. 
See Also