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