.NET 中的数据存储与网络编程相关类型解析
1. 隔离存储相关类型
1.1 IsolatedStorageException
IsolatedStorageException 代表隔离存储错误,位于 System.IO.IsolatedStorage 命名空间( mscorlib.dll )。其类定义如下:
public class IsolatedStorageException : Exception {
// Public Constructors
public IsolatedStorageException();
public IsolatedStorageException(string message);
public IsolatedStorageException(string message, Exception inner);
// Protected Constructors
protected IsolatedStorageException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
}
其继承层次为: System.Object -> System.Exception(Sys
超级会员免费看
订阅专栏 解锁全文

被折叠的 条评论
为什么被折叠?



