public IndexCreationInfo(IndexToCreateType type)
 {
     this.type    = type;
     optionsToAdd = IndexOptions.None;
     if (type == IndexToCreateType.Extended)
     {
         optionsToAdd = IndexOptions.PropertiesAndDependencies;
     }
 }
 public IndexCreationInfo(IndexToCreateType type, IndexOptions optionsToAdd)
 {
     this.type         = type;
     this.optionsToAdd = optionsToAdd;
 }