.NETFramework:Exception
阿新 • • 發佈:2018-05-20
dba eight region obj trace inf context () TP
1、
ylbtech-.NETFramework:Exception |
1.返回頂部 |
#region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.2\mscorlib.dll #endregion using System.Collections; using System.Reflection;2、using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Security; namespace System { [ClassInterface(ClassInterfaceType.None)] [ComDefaultInterface(typeof(_Exception))] [ComVisible(true)] public class Exception : ISerializable, _Exception {public Exception(); public Exception(string message); public Exception(string message, Exception innerException); [SecuritySafeCritical] protected Exception(SerializationInfo info, StreamingContext context); public virtual string Source { get; set; }public virtual string HelpLink { get; set; } public virtual string StackTrace { get; } public MethodBase TargetSite { get; } public Exception InnerException { get; } public virtual string Message { get; } public int HResult { get; protected set; } public virtual IDictionary Data { get; } protected event EventHandler<SafeSerializationEventArgs> SerializeObjectState; public virtual Exception GetBaseException(); [SecurityCritical] public virtual void GetObjectData(SerializationInfo info, StreamingContext context); public Type GetType(); public override string ToString(); } }
2.返回頂部 |
3.返回頂部 |
4.返回頂部 |
5.返回頂部 |
6.返回頂部 |
作者:ylbtech 出處:http://ylbtech.cnblogs.com/ 本文版權歸作者和博客園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接,否則保留追究法律責任的權利。 |
.NETFramework:Exception