PlaceholderDocumentBuilderFunc - делегат
Функция, создающая и возвращающая документ для заданного потока с содержимым documentStream.
Также возвращается функция getDocumentContentFunc,
которая получает контент изменённого документа в форме массива байт при успешной замене плейсхолдеров.
Пространство имён: Tessa.Extensions.Platform.Server.CardsСборка: Tessa (в Tessa.dll) Версия: 3.6.0.22
public delegate IPlaceholderDocument PlaceholderDocumentBuilderFunc(
Guid templateCardID,
MemoryStream documentStream,
out Func<IPlaceholderDocument, byte[]> getDocumentContentFunc
)
Public Delegate Function PlaceholderDocumentBuilderFunc (
templateCardID As Guid,
documentStream As MemoryStream,
<OutAttribute> ByRef getDocumentContentFunc As Func(Of IPlaceholderDocument, Byte())
) As IPlaceholderDocument
public delegate IPlaceholderDocument^ PlaceholderDocumentBuilderFunc(
Guid templateCardID,
MemoryStream^ documentStream,
[OutAttribute] Func<IPlaceholderDocument^, array<unsigned char>^>^% getDocumentContentFunc
)
type PlaceholderDocumentBuilderFunc =
delegate of
templateCardID : Guid *
documentStream : MemoryStream *
getDocumentContentFunc : Func<IPlaceholderDocument, byte[]> byref -> IPlaceholderDocument
- templateCardID Guid
-
Идентификатор карточки-шаблона, документ которой используется для замены плейсхолдеров.
- documentStream MemoryStream
-
Поток файла документа, в котором должны быть заменены плейсхолдеры.
Не может быть равен null.
- getDocumentContentFunc FuncIPlaceholderDocument, Byte
- Результат выполнения запроса. Не должен быть равен null.
IPlaceholderDocumentДокумент, для которого выполняется замена плейсхолдеров.