 | ThirdPartySystemDeleteBlocks Method |
[This is preliminary documentation and is subject to change.]
Delete customer's blocks for the specified vintage, based on a block unique identifiers list
Namespace:
Dyostem.Services
Assembly:
Dyostem (in Dyostem.dll) Version: 5.3
Syntaxpublic BlocksDeleteResult DeleteBlocks(
string sessionId,
Guid vintageId,
List<Guid> blockIds
)
Public Function DeleteBlocks (
sessionId As String,
vintageId As Guid,
blockIds As List(Of Guid)
) As BlocksDeleteResult
Dim instance As ThirdPartySystem
Dim sessionId As String
Dim vintageId As Guid
Dim blockIds As List(Of Guid)
Dim returnValue As BlocksDeleteResult
returnValue = instance.DeleteBlocks(sessionId,
vintageId, blockIds)
public final function DeleteBlocks(
sessionId : String,
vintageId : Guid,
blockIds : List<Guid>
) : BlocksDeleteResult
function DeleteBlocks(sessionId, vintageId, blockIds);
Parameters
- sessionId
- Type: SystemString
The SessionId returned by the OpenSession(String, String) command. - vintageId
- Type: SystemGuid
A vintage unique identifier - blockIds
- Type: System.Collections.GenericListGuid
A list of unique identifier for block to delete
Return Value
Type:
BlocksDeleteResultAn instance of
BlocksDeleteResult compound with of
Message indicating that the command succeeded or not, and a list of
BlockDeletionResult item, indicating for each block id the result of block deletion.
See Also