예제 #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)
 {
 }
예제 #7
0
 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)
 {
 }
예제 #19
0
 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) { }