CardEditorModelExportCardAsync(NullableGuid, NullableGuid, String, ISourceContentProvider, IUIContext, CardFileFormat, DictionaryString, Object, DictionaryString, Object, CancellationToken) - метод
Экспортирует заданную карточку, которая может быть отлична от редактируемой.
Пространство имён: Tessa.UI.Cards.ModelsСборка: Tessa.UI (в Tessa.UI.dll) Версия: 3.6.0.22
public Task<bool> ExportCardAsync(
Guid? cardID,
Guid? cardTypeID,
string cardTypeName,
ISourceContentProvider sourceContentProvider,
IUIContext context,
CardFileFormat format = CardFileFormat.Binary,
Dictionary<string, Object> exportInfo = null,
Dictionary<string, Object> importInfo = null,
CancellationToken cancellationToken = default
)
Public Function ExportCardAsync (
cardID As Guid?,
cardTypeID As Guid?,
cardTypeName As String,
sourceContentProvider As ISourceContentProvider,
context As IUIContext,
Optional format As CardFileFormat = CardFileFormat.Binary,
Optional exportInfo As Dictionary(Of String, Object) = Nothing,
Optional importInfo As Dictionary(Of String, Object) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of Boolean)
public:
virtual Task<bool>^ ExportCardAsync(
Nullable<Guid> cardID,
Nullable<Guid> cardTypeID,
String^ cardTypeName,
ISourceContentProvider^ sourceContentProvider,
IUIContext^ context,
CardFileFormat format = CardFileFormat::Binary,
Dictionary<String^, Object^>^ exportInfo = nullptr,
Dictionary<String^, Object^>^ importInfo = nullptr,
CancellationToken cancellationToken = CancellationToken()
) sealed
abstract ExportCardAsync :
cardID : Nullable<Guid> *
cardTypeID : Nullable<Guid> *
cardTypeName : string *
sourceContentProvider : ISourceContentProvider *
context : IUIContext *
?format : CardFileFormat *
?exportInfo : Dictionary<string, Object> *
?importInfo : Dictionary<string, Object> *
?cancellationToken : CancellationToken
(* Defaults:
let _format = defaultArg format CardFileFormat.Binary
let _exportInfo = defaultArg exportInfo null
let _importInfo = defaultArg importInfo null
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<bool>
override ExportCardAsync :
cardID : Nullable<Guid> *
cardTypeID : Nullable<Guid> *
cardTypeName : string *
sourceContentProvider : ISourceContentProvider *
context : IUIContext *
?format : CardFileFormat *
?exportInfo : Dictionary<string, Object> *
?importInfo : Dictionary<string, Object> *
?cancellationToken : CancellationToken
(* Defaults:
let _format = defaultArg format CardFileFormat.Binary
let _exportInfo = defaultArg exportInfo null
let _importInfo = defaultArg importInfo null
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<bool>
- cardID NullableGuid
-
Идентификатор экспортируемой карточки или null, если экспортируется виртуальная карточка,
идентификатор которой задаётся другим способом.
- cardTypeID NullableGuid
-
Идентификатор типа экспортируемой карточки или null, если идентификатор типа неизвестен.
- cardTypeName String
-
Имя типа экспортируемой карточки или null, если имя типа неизвестно.
- sourceContentProvider ISourceContentProvider
-
Провайдер для ресурса, представляющего карточку. Например файл и т.п.
- context IUIContext
- Текущий контекст.
- format CardFileFormat (Optional)
- Формат файла для экспорта карточки.
- exportInfo DictionaryString, Object (Optional)
-
Дополнительная информация для запроса на экспорт
или null, если дополнительная информация отсутствует.
- importInfo DictionaryString, Object (Optional)
-
Дополнительная информация для формируемого запроса на импорт
или null, если дополнительная информация отсутствует.
- cancellationToken CancellationToken (Optional)
- Объект, посредством которого можно отменить асинхронную задачу.
TaskBooleantrue, если действие успешно произведено;
false в противном случае.
ICardEditorModelExportCardAsync(NullableGuid, NullableGuid, String, ISourceContentProvider, IUIContext, CardFileFormat, DictionaryString, Object, DictionaryString, Object, CancellationToken)