| AppletManifestTryGetAsset Method |
Attempt to retrieve the assets assetPath
Namespace:
SanteDB.Core.Applets.Model
Assembly:
SanteDB.Core.Applets (in SanteDB.Core.Applets.dll) Version: 3.0.481-alpha
Syntax public bool TryGetAsset(
string assetPath,
out AppletAsset asset
)
Public Function TryGetAsset (
assetPath As String,
<OutAttribute> ByRef asset As AppletAsset
) As Boolean
public:
bool TryGetAsset(
String^ assetPath,
[OutAttribute] AppletAsset^% asset
)
member TryGetAsset :
assetPath : string *
asset : AppletAsset byref -> bool
Parameters
- assetPath
- Type: SystemString
The path to the asset name in this collection - asset
- Type: SanteDB.Core.Applets.ModelAppletAsset
The resolved asset
Return Value
Type:
BooleanTrue if the asset was successfully retrieved
See Also