| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // System.ComponentModel.Design.Serialization.CodeDomSerializerException.cs
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- using System.CodeDom;
- using System.Runtime.Serialization;
- namespace System.ComponentModel.Design.Serialization
- {
- public class CodeDomSerializerException : SystemException
- {
- [MonoTODO]
- public CodeDomSerializerException (Exception ex,
- CodeLinePragma code_line_pragma)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- protected CodeDomSerializerException (SerializationInfo info,
- StreamingContext context)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public CodeDomSerializerException (string str,
- CodeLinePragma code_line_pragma)
- {
- throw new NotImplementedException();
- }
- public CodeLinePragma LinePragma {
- [MonoTODO]
- get { throw new NotImplementedException(); }
- }
- [MonoTODO]
- public override void GetObjectData (SerializationInfo info,
- StreamingContext context)
- {
- throw new NotImplementedException();
- }
- }
- }
|