C# 클래스 formulate.app.Persistence.Internal.JsonConfiguredFormPersistence

Handles persistence of configured forms to JSON on the file system.
상속: IConfiguredFormPersistence
파일 보기 프로젝트 열기: rhythmagency/formulate

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Delete ( System.Guid configuredFormId ) : void

Deletes the specified configured form.

Delete ( string configuredFormAlias ) : void

Deletes the configured form with the specified alias.

JsonConfiguredFormPersistence ( ) : System

Default constructor.

Persist ( ConfiguredForm configuredForm ) : void

Persists a configured form to the file system.

Retrieve ( System.Guid configuredFormId ) : ConfiguredForm

Gets the configured form with the specified ID.

Retrieve ( string configuredFormAlias ) : ConfiguredForm

Gets the configured form with the specified alias.

RetrieveChildren ( System.Guid parentId ) : IEnumerable

Gets all the configured forms that are the children of the folder with the specified ID.

메소드 상세

Delete() 공개 메소드

Deletes the specified configured form.
public Delete ( System.Guid configuredFormId ) : void
configuredFormId System.Guid The ID of the configured form to delete.
리턴 void

Delete() 공개 메소드

Deletes the configured form with the specified alias.
public Delete ( string configuredFormAlias ) : void
configuredFormAlias string The alias of the configured form to delete.
리턴 void

JsonConfiguredFormPersistence() 공개 메소드

Default constructor.
public JsonConfiguredFormPersistence ( ) : System
리턴 System

Persist() 공개 메소드

Persists a configured form to the file system.
public Persist ( ConfiguredForm configuredForm ) : void
configuredForm ConfiguredForm The configured form to persist.
리턴 void

Retrieve() 공개 메소드

Gets the configured form with the specified ID.
public Retrieve ( System.Guid configuredFormId ) : ConfiguredForm
configuredFormId System.Guid The ID of the configured form.
리턴 ConfiguredForm

Retrieve() 공개 메소드

Gets the configured form with the specified alias.
public Retrieve ( string configuredFormAlias ) : ConfiguredForm
configuredFormAlias string The alias of the configured form.
리턴 ConfiguredForm

RetrieveChildren() 공개 메소드

Gets all the configured forms that are the children of the folder with the specified ID.
public RetrieveChildren ( System.Guid parentId ) : IEnumerable
parentId System.Guid The parent ID.
리턴 IEnumerable