C# 클래스 TrueVault.Net.Models.Schema.Schema

A Schema specifies the fields in a Document to index by the search engine. Schemas are specific to a Vault so you may update schemas in one Vault without affecting the schemas in another Vault.

When a Schema is updated, all Documents associated with the updated Schema will be automatically re-indexed by our search engine.

A Schema with Documents associated with it can not be deleted. You must delete all documents first.
파일 보기 프로젝트 열기: hsrob/TrueVault.Net 1 사용 예제들

공개 메소드들

메소드 설명
Schema ( ) : System

Create a new Schema

Schema ( string name ) : System

Create a new Schema with the given Name and Fields

비공개 메소드들

메소드 설명
Schema ( System.Guid id, string name ) : System

Create a new Schema with the given Name and Fields

메소드 상세

Schema() 공개 메소드

Create a new Schema
public Schema ( ) : System
리턴 System

Schema() 공개 메소드

Create a new Schema with the given Name and Fields
A schema must have a valid, non-empty name A Schema must include one or more fields
public Schema ( string name ) : System
name string Required, the name of this Schema
리턴 System