本文整理汇总了C#中System.Web.HttpWorkerRequest.GetLocalAddress方法的典型用法代码示例。如果您正苦于以下问题:C# HttpWorkerRequest.GetLocalAddress方法的具体用法?C# HttpWorkerRequest.GetLocalAddress怎么用?C# HttpWorkerRequest.GetLocalAddress使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.HttpWorkerRequest
的用法示例。
在下文中一共展示了HttpWorkerRequest.GetLocalAddress方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CanExecuteRequest
bool CanExecuteRequest (HttpWorkerRequest req)
{
if (disposing)
return false;
int threads, cports;
ThreadPool.GetAvailableThreads (out threads, out cports);
bool local = (req != null && req.GetLocalAddress () == "127.0.0.1");
return (threads > minFree) || (local && threads > minLocalFree);
}
示例2: IsLocal
// helpers
private static bool IsLocal(HttpWorkerRequest wr) {
String remoteAddress = wr.GetRemoteAddress();
// check if localhost
if (remoteAddress == "127.0.0.1" || remoteAddress == "::1")
return true;
// if unknown, assume not local
if (String.IsNullOrEmpty(remoteAddress))
return false;
// compare with local address
if (remoteAddress == wr.GetLocalAddress())
return true;
return false;
}
示例3: CanExecuteRequest
bool CanExecuteRequest (HttpWorkerRequest req)
{
if (disposing)
return false;
#if TARGET_J2EE
return true; // The J2EE app server manages the thread pool
#else
int threads, cports;
ThreadPool.GetAvailableThreads (out threads, out cports);
bool local = (req != null && req.GetLocalAddress () == "127.0.0.1");
return (threads > minFree) || (local && threads > minLocalFree);
#endif
}
示例4: IsLocal
private static bool IsLocal(HttpWorkerRequest wr)
{
string remoteAddress = wr.GetRemoteAddress();
switch (remoteAddress)
{
case "127.0.0.1":
case "::1":
return true;
}
if (string.IsNullOrEmpty(remoteAddress))
{
return false;
}
return (remoteAddress == wr.GetLocalAddress());
}