本文整理汇总了C#中Keywords.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Keywords.ToString方法的具体用法?C# Keywords.ToString怎么用?C# Keywords.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Keywords
的用法示例。
在下文中一共展示了Keywords.ToString方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Token
public Token(TokenType type, Keywords keyword)
{
if (keyword == Keywords.Short) keyword = Keywords.Int;
else if (keyword == Keywords.Scn) keyword = Keywords.ScriptName;
this.type = type;
this.keyword = keyword;
this.token = keyword.ToString();
this.utoken = this.token;
}
示例2: GetKeyName
internal static string GetKeyName(Keywords keyword)
{
switch(keyword)
{
case Keywords.UserName:
return "USER ID";
case Keywords.IntegratedSecurity:
return "INTEGRATED SECURITY";
default:
return keyword.ToString().ToUpperInvariant();
}
}
示例3: GetKeyName
internal static string GetKeyName(Keywords keyword)
{
switch (keyword)
{
case Keywords.Host:
return "HOST";
case Keywords.Port:
return "PORT";
case Keywords.Protocol:
return "PROTOCOL";
case Keywords.Database:
return "DATABASE";
case Keywords.UserName:
return "USER ID";
case Keywords.Password:
return "PASSWORD";
case Keywords.SSL:
return "SSL";
case Keywords.SslMode:
return "SSLMODE";
#pragma warning disable 618
case Keywords.Encoding:
#pragma warning restore 618
return "ENCODING";
case Keywords.Timeout:
return "TIMEOUT";
case Keywords.SearchPath:
return "SEARCHPATH";
case Keywords.Pooling:
return "POOLING";
case Keywords.ConnectionLifeTime:
return "CONNECTIONLIFETIME";
case Keywords.MinPoolSize:
return "MINPOOLSIZE";
case Keywords.MaxPoolSize:
return "MAXPOOLSIZE";
case Keywords.SyncNotification:
return "SYNCNOTIFICATION";
case Keywords.CommandTimeout:
return "COMMANDTIMEOUT";
case Keywords.Enlist:
return "ENLIST";
case Keywords.PreloadReader:
return "PRELOADREADER";
case Keywords.UseExtendedTypes:
return "USEEXTENDEDTYPES";
case Keywords.IntegratedSecurity:
return "INTEGRATED SECURITY";
case Keywords.Compatible:
return "COMPATIBLE";
case Keywords.ApplicationName:
return "APPLICATIONNAME";
case Keywords.AlwaysPrepare:
return "ALWAYSPREPARE";
default:
return keyword.ToString().ToUpperInvariant();
}
}
示例4: GetKeyName
internal static string GetKeyName(Keywords keyword)
{
if (keyword == Keywords.UserName)
{
return "USER ID";
}
else if (keyword == Keywords.IntegratedSecurity)
{
return "INTEGRATED SECURITY";
}
else
{
return keyword.ToString().ToUpperInvariant();
}
}