本文整理汇总了C#中IndexType.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# IndexType.ToString方法的具体用法?C# IndexType.ToString怎么用?C# IndexType.ToString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IndexType
的用法示例。
在下文中一共展示了IndexType.ToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateIndex
public static IIndex CreateIndex(DirectoryInfo directory, IndexType type)
{
if (directory == null)
throw new ArgumentNullException("directory", "directory cannot be null");
directory.Refresh();
if (!directory.Exists)
directory.Create();
switch (type) {
case IndexType.SingleIndex:
return Index.Create(directory);
case IndexType.DoubleIndex:
return DoubleIndex.Create(directory);
case IndexType.CyclicalIndex:
return CyclicalIndex.Create(directory);
default:
throw new NotSupportedException(type.ToString() + " not supported");
}
}
示例2: GetUrlToIndex
/// <summary>
/// Constructs a URL to the Index page.
/// </summary>
/// <param name="indexType">The specific type performed by the index page (i.e. which type of articles to display).</param>
/// <returns>A URL to the Index page.</returns>
public static string GetUrlToIndex(IndexType indexType)
{
if (indexType == Tools.DEFAULT_INDEX_TYPE)
return "./Index.aspx";
else
return "./Index.aspx?action=" + indexType.ToString();
}