KSP API
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties
Classes | Enumerations
Package KSP.IO

Classes

class  BinaryReader
 Identical to System.IO.BinaryReader, but with added IDisposable methods (for use in using structures), and a factory method instead of constructors. More...
 
class  BinaryWriter
 Identical to System.IO.BinaryWriter, but with added IDisposable methods (for use in using structures), and a factory method instead of constructors. More...
 
class  File
 
class  FileInfo
 A surrogate for System.IO.FileInfo. More...
 
class  IOException
 A surrogate for System.IO.IOException. More...
 
class  IOUtils
 Has some useful little tools and utilities. More...
 
class  MemoryStream
 Useful for manipulating bytes in memory. More...
 
class  PluginConfigNode
 A node full of configuration values. More...
 
class  PluginConfiguration
 From N3X15: PluginConfiguration was something I threw together a while ago to try and improve settings serialization. The INI files we were using just couldn't cope with newlines and had all sorts of horrible workarounds. Instead of INI files, it writes structured XML files that look like this: More...
 
class  TextReader
 Identical to System.IO.TextReader, but with added IDisposable methods (for use in using() statements), and a factory method instead of constructors. More...
 
class  TextWriter
 Identical to System.IO.TextWriter, but with added IDisposable methods (for use in using() statements), and a factory method instead of constructors. More...
 

Enumerations

enum  SeekOrigin { SeekOrigin.Begin = 0, SeekOrigin.Current = 1, SeekOrigin.End = 2 }
 This enum is a replacement for its System.IO equivalent. It's used to determine from where one wishes to seek in a file stream. More...
 

Enumeration Type Documentation

This enum is a replacement for its System.IO equivalent. It's used to determine from where one wishes to seek in a file stream.

Enumerator
Begin 

Seek from the beginning of the stream.

Current 

Seek from the current position in the stream.

End 

Seek from the end of the stream.