Example #1
0
        /// <summary>
        /// Search-based field constructor
        /// </summary>
        /// <param name="innerField">A lazy load that can be invoked if this field needs to get direct access to the underlying field (eg editing, accessing values not in the index)</param>
        /// <param name="searchValue">Raw value stored in the index for this field. If the field is not from an index, pass null.</param>
        protected FieldType(LazyField innerField, string searchValue)
        {
            Assert.IsNotNull(innerField, "Callback to load inner field was null.");

            _innerField = innerField;
            _searchValue = searchValue;
        }
Example #2
0
        /// <summary>
        /// Search-based field constructor
        /// </summary>
        /// <param name="innerField">A lazy load that can be invoked if this field needs to get direct access to the underlying field (eg editing, accessing values not in the index)</param>
        /// <param name="searchValue">Raw value stored in the index for this field. If the field is not from an index, pass null.</param>
        protected FieldType(LazyField innerField, string searchValue)
        {
            Assert.IsNotNull(innerField, "Callback to load inner field was null.");

            _innerField  = innerField;
            _searchValue = searchValue;
        }
Example #3
0
 public IntegerField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
 public ItemReferenceField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Example #5
0
 public BooleanField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #6
0
 public ImageField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
 public DictionaryField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Example #8
0
 public FileField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #9
0
 public TristateField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #10
0
 public IntegerField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Example #11
0
 public PathItemReferenceField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #12
0
 public DictionaryField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
 public TristateField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
 public DateTimeField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Example #15
0
 public NumericField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
 public ContentHubImageField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #17
0
 public DateTimeField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #18
0
 protected XmlFieldType(LazyField innerField, string searchValue) : base(innerField, searchValue)
 {
 }
 public ItemReferenceListField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #20
0
		public RichTextField(LazyField field, string indexValue) : base(field, indexValue) { }
 public HyperlinkField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Example #22
0
 public TextField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #23
0
 public HyperlinkField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Example #24
0
		public BooleanField(LazyField field, string indexValue) : base(field, indexValue) { }