C# 클래스 TrueVault.Net.Dto.JsonStore.DocumentSaveRequestDto

파일 보기 프로젝트 열기: hsrob/TrueVault.Net

공개 메소드들

메소드 설명
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