Esempio n. 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;
        }
Esempio n. 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;
        }
Esempio n. 3
0
 public IntegerField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
 public ItemReferenceField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Esempio n. 5
0
 public BooleanField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 6
0
 public ImageField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
 public DictionaryField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Esempio n. 8
0
 public FileField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 9
0
 public TristateField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 10
0
 public IntegerField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Esempio n. 11
0
 public PathItemReferenceField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 12
0
 public DictionaryField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 13
0
 public TristateField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Esempio n. 14
0
 public DateTimeField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Esempio n. 15
0
 public NumericField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Esempio n. 16
0
 public ContentHubImageField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 17
0
 public DateTimeField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 18
0
 protected XmlFieldType(LazyField innerField, string searchValue) : base(innerField, searchValue)
 {
 }
 public ItemReferenceListField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 20
0
		public RichTextField(LazyField field, string indexValue) : base(field, indexValue) { }
Esempio n. 21
0
 public HyperlinkField(LazyField field, string indexValue)
     : base(field, indexValue)
 {
 }
Esempio n. 22
0
 public TextField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 23
0
 public HyperlinkField(LazyField field, string indexValue) : base(field, indexValue)
 {
 }
Esempio n. 24
0
		public BooleanField(LazyField field, string indexValue) : base(field, indexValue) { }