| 1234567891011121314151617181920212223242526272829303132333435 |
- #if NET_2_0
- namespace System.Xml
- {
- public class XmlBinaryWriterSession
- {
- bool emit_strings;
- public XmlBinaryWriterSession ()
- {
- }
- public XmlBinaryWriterSession (bool emitStrings)
- {
- emit_strings = emitStrings;
- }
- public bool EmitStrings {
- get { return emit_strings; }
- }
- [MonoTODO]
- public void Reset ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual bool TryAdd (XmlDictionaryString value,
- out int key)
- {
- throw new NotImplementedException ();
- }
- }
- }
- #endif
|