System.Console.SetError 方法

方法描述

将 Error 属性设置为指定的 TextWriter 对象。

语法定义(C# System.Console.SetError 方法 的用法)

[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static void SetError(
	TextWriter newError
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
newError System-IO-TextWriter 新的标准错误输出的流。
返回值 void

提示和注释

默认情况下,Error 属性设置为标准错误输出流。

可以使用封装 FileStream 的 StreamWriter 向文件发送错误消息。

注意

应用到此类型或成员的 HostProtectionAttribute 特性具有以下 Resources 属性值:UI。HostProtectionAttribute 不影响桌面应用程序(桌面应用程序一般通过双击图标、键入命令或在浏览器中输入 URL 启动)。有关更多信息,请参见 HostProtectionAttribute 类或 SQL Server 编程和宿主保护特性。

System.Console.SetError 方法例子

下面的示例演示如何将标准错误流重定向到文件。

using System;
using System.IO;
using System.Reflection;

public class RedirectStdErr
{
   public static void Main()
   {
      // Define file to receive error stream.
      DateTime appStart = DateTime.Now;
      string fn = @"c:\temp\errlog" + appStart.ToString("yyyyMMddHHmm") + ".log";
      TextWriter errStream = new StreamWriter(fn);
      string appName = Assembly.GetExecutingAssembly().Location;
      appName = appName.Substring(appName.LastIndexOf('\\') + 1);
      // Redirect standard error stream to file.
      Console.SetError(errStream);
      // Write file header.
      Console.Error.WriteLine("Error Log for Application {0}", appName);
      Console.Error.WriteLine();
      Console.Error.WriteLine("Application started at {0}.", appStart);
      Console.Error.WriteLine();
      //
      // Application code along with error output 
      //
      // Close redirected error stream.
      Console.Error.Close();
   }
}

异常

异常 异常描述
ArgumentNullException newError 为 null。
SecurityException 调用方没有所要求的权限。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。