Remove one or many docs from a group

Namespace:  IpernityNET.IpernityObjects
Assembly:  IpernityNET (in IpernityNET.dll) Version: 0.3.1.0 (0.3.1.0)

Syntax

C#
public RemoveDocsResults DocsRemove(
	IEnumerable<Document> docs
)
Visual Basic (Declaration)
Public Function DocsRemove ( _
	docs As IEnumerable(Of Document) _
) As RemoveDocsResults
Visual C++
public:
RemoveDocsResults^ DocsRemove(
	IEnumerable<Document^>^ docs
)

Parameters

docs
Type: System.Collections.Generic..::.IEnumerable<(Of <(Document>)>)
A list of Document. (List may contain a maximum of 20 IDs)

Return Value

A RemoveDocsResults object containing the results

Remarks

This method encapsulates group.docs.remove This method requires "write" permission on docs.

Exceptions

ExceptionCondition
IpernityNET..::.IpernityExceptionThrowed when Ipernity returned an error
IpernityNET.IpernityObjects..::.ObjectNotConfiguredExceptionThrowed when an Ipernity object has not been configured. Use the method ConfigureIpernityObject(IpernityObject) to configure the object and allow it to interact with Ipernity

See Also