AssetService.UnregisterCorrelation Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UnregisterCorrelation(String, Guid) |
Unregister correlation from this service. |
UnregisterCorrelation(String, String) |
Unregister correlation from this service. |
UnregisterCorrelation(String, Guid)
Unregister correlation from this service.
public:
void UnregisterCorrelation(System::String ^ assetTypeName, Guid assetId);
public void UnregisterCorrelation (string assetTypeName, Guid assetId);
member this.UnregisterCorrelation : string * Guid -> unit
Public Sub UnregisterCorrelation (assetTypeName As String, assetId As Guid)
Parameters
- assetTypeName
- String
Asset type name. It is defined by asset provider.
- assetId
- Guid
Used to identify the asset. The id should be immutable in the asset life cycle, even if the status or content changes over time. E.g., project guid is generated during project creation and will never change. This makes it a good candidate for asset id of Project asset.
Remarks
Used by Asset Provider. Call this method when previous registered asset correlation is stale.
Applies to
UnregisterCorrelation(String, String)
Unregister correlation from this service.
public:
void UnregisterCorrelation(System::String ^ assetTypeName, System::String ^ assetId);
public void UnregisterCorrelation (string assetTypeName, string assetId);
member this.UnregisterCorrelation : string * string -> unit
Public Sub UnregisterCorrelation (assetTypeName As String, assetId As String)
Parameters
- assetTypeName
- String
Asset type name. It is defined by asset provider.
- assetId
- String
Used to identify the asset. The id should be immutable in the asset life cycle, even if the status or content changes over time. E.g., project guid is generated during project creation and will never change. This makes it a good candidate for asset id of Project asset.
Remarks
Used by Asset Provider. Call this method when previous registered asset correlation is stale.