Custom Nodes Square9.CustomNode SDK Constructors Current: GlobalSearchDocument(string, string) Constructor GlobalSearchDocument(string, string) Constructor Initializes a new instance of the GlobalSearchDocument class with a specified Archive ID and Document ID. public GlobalSearchDocument(int archiveId, int documentId) CODE Parametersvalue archiveIdArchive Id of the GlobalSearch document. value documentIdDocumentId of the GlobalSearch document. ExampleThe following example demonstrates creating a GlobalSearch document with an ArchiveId of 1 and a DocumentId of 1. var document = new GlobalSearchDocument(1, 1); CODE ×