Ext.Net.EventStore.AddStandardFields C# (CSharp) Method

AddStandardFields() public method

public AddStandardFields ( ) : void
return void
        public void AddStandardFields()
        {
            this.EnsureReader();
            this.Reader[0].Fields.Add(new RecordField { Name = "EventId", Type = RecordFieldType.Int });
            this.Reader[0].Fields.Add(new RecordField { Name = "CalendarId", Type = RecordFieldType.Int });
            this.Reader[0].Fields.Add(new RecordField { Name = "Title", Type = RecordFieldType.String });
            this.Reader[0].Fields.Add(new RecordField { Name = "StartDate", Type = RecordFieldType.Date, DateFormat = this.DateFormat });
            this.Reader[0].Fields.Add(new RecordField { Name = "EndDate", Type = RecordFieldType.Date, DateFormat = this.DateFormat });
            this.Reader[0].Fields.Add(new RecordField { Name = "Location", Type = RecordFieldType.String });
            this.Reader[0].Fields.Add(new RecordField { Name = "Notes", Type = RecordFieldType.String });
            this.Reader[0].Fields.Add(new RecordField { Name = "Url", Type = RecordFieldType.String });
            this.Reader[0].Fields.Add(new RecordField { Name = "IsAllDay", Type = RecordFieldType.Boolean });
            this.Reader[0].Fields.Add(new RecordField { Name = "Reminder", Type = RecordFieldType.String });
            this.Reader[0].Fields.Add(new RecordField { Name = "IsNew", Type = RecordFieldType.Boolean });
            this.StandardFields = false;
        }