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