本文整理汇总了C#中IRequest.Warning方法的典型用法代码示例。如果您正苦于以下问题:C# IRequest.Warning方法的具体用法?C# IRequest.Warning怎么用?C# IRequest.Warning使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IRequest
的用法示例。
在下文中一共展示了IRequest.Warning方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Warning
public bool Warning(IRequest request, string messageText, params object[] args) {
return request.Warning(request.FormatMessageString(messageText, args));
}
示例2: ResolvePackageSources
/// <summary>
/// Resolves and returns Package Sources to the client.
///
/// Specified sources are passed in via the request object (<c>request.GetSources()</c>).
///
/// Sources are returned using <c>request.YieldPackageSource(...)</c>
/// </summary>
/// <param name="request">An object passed in from the CORE that contains functions that can be used to interact with the CORE and HOST</param>
public void ResolvePackageSources(IRequest request)
{
request.Debug("Calling '{0}::ResolvePackageSources'", PackageProviderName);
if (request.Sources.Any())
{
// the system is requesting sources that match the values passed.
// if the value passed can be a legitimate source, but is not registered, return a package source marked unregistered.
var packageSources = ProviderStorage.GetPackageSources(request);
if (request.IsCanceled)
{
return;
}
foreach (var source in request.Sources.AsNotNull())
{
if (packageSources.ContainsKey(source))
{
var packageSource = packageSources[source];
// YieldPackageSource returns false when operation was cancelled
if (!request.YieldPackageSource(packageSource.Name, packageSource.Location, packageSource.Trusted, packageSource.IsRegistered, packageSource.IsValidated))
{
return;
}
}
else
{
request.Warning("Package Source '{0}' not found.", source);
}
}
}
else
{
// the system is requesting all the registered sources
var packageSources = ProviderStorage.GetPackageSources(request);
foreach (var entry in packageSources.AsNotNull())
{
var packageSource = entry.Value;
// YieldPackageSource returns false when operation was cancelled
if (!request.YieldPackageSource(packageSource.Name, packageSource.Location, packageSource.Trusted, packageSource.IsRegistered, packageSource.IsValidated))
{
return;
}
}
}
}