C# 클래스 Sitecore.FakeDb.DbTemplate

상속: IEnumerable
파일 보기 프로젝트 열기: sergeyshushlyapin/Sitecore.FakeDb 1 사용 예제들

Private Properties

프로퍼티 타입 설명
DbTemplate System.Linq

공개 메소드들

메소드 설명
Add ( DbField field, string standardValue ) : void

Adds a specific field with a Standard Value.

Add ( ID id ) : void

Adds a field with a specific id and auto-generated name.

Add ( ID id, string standardValue ) : void

Adds a field with a specific id and Standard Value.

Add ( string fieldName ) : void

Adds a field with a specific name and auto-generated id.

Add ( string fieldName, string standardValue ) : void

Adds a field with a specific name and Standard Value.

DbTemplate ( ) : System.Linq

Initializes a new instance of the DbTemplate class with auto-generated name and id.

DbTemplate ( ID id ) : System.Linq

Initializes a new instance of the DbTemplate class with a specific id and auto-generated name.

DbTemplate ( string name ) : System.Linq

Initializes a new instance of the DbTemplate class with a specific name and auto-generated id.

DbTemplate ( string name, ID id ) : System.Linq

Initializes a new instance of the DbTemplate class with a specific name and id.

비공개 메소드들

메소드 설명
DbTemplate ( string name, ID id, ID templateId ) : System.Linq

메소드 상세

Add() 공개 메소드

Adds a specific field with a Standard Value.
public Add ( DbField field, string standardValue ) : void
field DbField The field.
standardValue string The field standard value.
리턴 void

Add() 공개 메소드

Adds a field with a specific id and auto-generated name.
public Add ( ID id ) : void
id ID The field id.
리턴 void

Add() 공개 메소드

Adds a field with a specific id and Standard Value.
public Add ( ID id, string standardValue ) : void
id ID The field id.
standardValue string The field standard value.
리턴 void

Add() 공개 메소드

Adds a field with a specific name and auto-generated id.
public Add ( string fieldName ) : void
fieldName string The field name.
리턴 void

Add() 공개 메소드

Adds a field with a specific name and Standard Value.
public Add ( string fieldName, string standardValue ) : void
fieldName string The field name.
standardValue string The field standard value.
리턴 void

DbTemplate() 공개 메소드

Initializes a new instance of the DbTemplate class with auto-generated name and id.
public DbTemplate ( ) : System.Linq
리턴 System.Linq

DbTemplate() 공개 메소드

Initializes a new instance of the DbTemplate class with a specific id and auto-generated name.
public DbTemplate ( ID id ) : System.Linq
id ID The template id.
리턴 System.Linq

DbTemplate() 공개 메소드

Initializes a new instance of the DbTemplate class with a specific name and auto-generated id.
public DbTemplate ( string name ) : System.Linq
name string The template name.
리턴 System.Linq

DbTemplate() 공개 메소드

Initializes a new instance of the DbTemplate class with a specific name and id.
public DbTemplate ( string name, ID id ) : System.Linq
name string The template name.
id ID The template id.
리턴 System.Linq