FileScriptCache.IsTaskItemUnchanged Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Namespace: Microsoft.Data.Schema.SchemaModel
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public Function IsTaskItemUnchanged ( _
externalNameParts As IList(Of String), _
taskItem As ITaskItem _
) As Boolean
public bool IsTaskItemUnchanged(
IList<string> externalNameParts,
ITaskItem taskItem
)
public:
bool IsTaskItemUnchanged(
IList<String^>^ externalNameParts,
ITaskItem^ taskItem
)
member IsTaskItemUnchanged :
externalNameParts:IList<string> *
taskItem:ITaskItem -> bool
public function IsTaskItemUnchanged(
externalNameParts : IList<String>,
taskItem : ITaskItem
) : boolean
Parameters
- externalNameParts
Type: System.Collections.Generic.IList<String>
A list of the name parts. For example, the name "dbo.MyTable" would be a list that contains "dbo" and "MyTable".
- taskItem
Type: Microsoft.Build.Framework.ITaskItem
An ITaskItem that indicates the task to perform on the element that is identified by the externalNameParts.
Return Value
Type: System.Boolean
true if the task item has changed; otherwise, false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.