C# Класс TrueVault.Net.Dto.JsonStore.DocumentSaveRequestDto

Показать файл Открыть проект

Открытые методы

Метод Описание
DocumentSaveRequestDto ( string jsonDocument ) : System

Creates a Document request DTO for POST or PUT operations, accepting a serialized JSON string, which will automatically be converted to Base64.

DocumentSaveRequestDto ( string jsonDocument, System.Guid schemaId ) : System

Creates a Document request DTO for POST or PUT operations, accepting a serialized JSON string, which will automatically be converted to Base64. This document will be associated with the provided Search Engine Schema ID.

Описание методов

DocumentSaveRequestDto() публичный Метод

Creates a Document request DTO for POST or PUT operations, accepting a serialized JSON string, which will automatically be converted to Base64.
public DocumentSaveRequestDto ( string jsonDocument ) : System
jsonDocument string /// A serialized JSON string representing the document to be stored, which will automatically be /// converted to Base64. ///
Результат System

DocumentSaveRequestDto() публичный Метод

Creates a Document request DTO for POST or PUT operations, accepting a serialized JSON string, which will automatically be converted to Base64. This document will be associated with the provided Search Engine Schema ID.
public DocumentSaveRequestDto ( string jsonDocument, System.Guid schemaId ) : System
jsonDocument string /// A serialized JSON string representing the document to be stored, which will automatically be /// converted to Base64. ///
schemaId System.Guid The Search Engine Schema ID to associate this document with
Результат System