Access DialogsDocuWare Platform .NET API

In order to access a dialog, you must get the dialog information items from either a file cabinet or the organization.

Get a dialog from a file cabinet

First you get the list of search dialog info items and then you choose a dialog and load it from the DocuWare Platform.

C#
var dialogInfoItems = fileCabinet.GetDialogInfosFromSearchesRelation();
var dialog = dialogInfoItems.Dialog[0].GetDialogFromSelfRelation();
Console.WriteLine("Dialog: " + dialog.DisplayName);

// Continue, e.g. run a query.