Add tags to the document.

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

Syntax

C#
public void TagsAdd(
	IEnumerable<string> keyword,
	IEnumerable<string> members
)
Visual Basic (Declaration)
Public Sub TagsAdd ( _
	keyword As IEnumerable(Of String), _
	members As IEnumerable(Of String) _
)
Visual C++
public:
void TagsAdd(
	IEnumerable<String^>^ keyword, 
	IEnumerable<String^>^ members
)

Parameters

keyword
Type: System.Collections.Generic..::.IEnumerable<(Of <(String>)>)
The keyword tags to add to the document. Set it to null if you do not want to add keywords.
members
Type: System.Collections.Generic..::.IEnumerable<(Of <(String>)>)
A list of member IDs or member Web aliases. The members must belong to the calling user network. Set it to null if you do not want to add members.

Remarks

This method encapsulates doc.tags.add 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.

See Also