Adds a work item to the site collection.
命名空间: Microsoft.SharePoint
程序集: Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)
语法
声明
<PermissionSetAttribute(SecurityAction.LinkDemand, Name := "FullTrust")> _
<PermissionSetAttribute(SecurityAction.InheritanceDemand, Name := "FullTrust")> _
Public Function AddWorkItem ( _
gWorkItemId As Guid, _
schdDateTime As DateTime, _
gWorkItemType As Guid, _
gWebId As Guid, _
gParentId As Guid, _
nItemId As Integer, _
fSetWebId As Boolean, _
gItemGuid As Guid, _
gBatchId As Guid, _
nUserId As Integer, _
rgbBinaryPayload As Byte(), _
strTextPayload As String, _
gProcessingId As Guid, _
useExponentialRetryBackOff As Boolean _
) As Guid
用法
Dim instance As SPSite
Dim gWorkItemId As Guid
Dim schdDateTime As DateTime
Dim gWorkItemType As Guid
Dim gWebId As Guid
Dim gParentId As Guid
Dim nItemId As Integer
Dim fSetWebId As Boolean
Dim gItemGuid As Guid
Dim gBatchId As Guid
Dim nUserId As Integer
Dim rgbBinaryPayload As Byte()
Dim strTextPayload As String
Dim gProcessingId As Guid
Dim useExponentialRetryBackOff As Boolean
Dim returnValue As Guid
returnValue = instance.AddWorkItem(gWorkItemId, _
schdDateTime, gWorkItemType, gWebId, _
gParentId, nItemId, fSetWebId, gItemGuid, _
gBatchId, nUserId, rgbBinaryPayload, _
strTextPayload, gProcessingId, useExponentialRetryBackOff)
[PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")]
[PermissionSetAttribute(SecurityAction.InheritanceDemand, Name = "FullTrust")]
public Guid AddWorkItem(
Guid gWorkItemId,
DateTime schdDateTime,
Guid gWorkItemType,
Guid gWebId,
Guid gParentId,
int nItemId,
bool fSetWebId,
Guid gItemGuid,
Guid gBatchId,
int nUserId,
byte[] rgbBinaryPayload,
string strTextPayload,
Guid gProcessingId,
bool useExponentialRetryBackOff
)
参数
gWorkItemId
类型:System.GuidA GUID that identifies the work item.
schdDateTime
类型:System.DateTimeA System.DateTime object that represents the date and time at which the work item takes place.
gWorkItemType
类型:System.GuidA GUID that specifies the work item type.
gWebId
类型:System.GuidA GUID that specifies the Web site that is associated with the work item.
gParentId
类型:System.GuidA GUID that identifies the parent of the work item.
nItemId
类型:System.Int32A 32-bit integer that identifies a list item that is associated with the work item.
fSetWebId
类型:System.Booleantrue to set the Web identifier; otherwise, false.
gItemGuid
类型:System.GuidA GUID that specifies a list item that is associated with the work item.
gBatchId
类型:System.GuidA GUID that specifies a context identifier for the job work item engine. The value can vary depending on the job type; for example, for alerts it might store a user ID but for workflow it would store a workflow ID.
nUserId
类型:System.Int32A 32-bit integer index that identifies an SPUser object that represents the user who is responsible for scheduling the work item.
rgbBinaryPayload
类型:[]A byte array that specifies a binary payload.
strTextPayload
类型:System.StringA string that specifies a text payload.
gProcessingId
类型:System.GuidA GUID that identifies the processing of the work item.
useExponentialRetryBackOff
类型:System.Booleantrue to use exponential back-off; otherwise, false.
返回值
类型:System.Guid
A GUID that identifies the work item.
备注
The work item that is created through the AddWorkItem method is a schedule-job work item; its information can be accessed through the SPWorkItem class.