RequireOpen() public method

public RequireOpen ( ) : void
return void
Ejemplo n.º 1
0
 public static void SetLineNumber(RubyContext/*!*/ context, RubyIO/*!*/ self, [DefaultProtocol]int value) {
     self.RequireOpen();
     self.LineNumber = value;
 }
Ejemplo n.º 2
0
 public static bool Sync(RubyIO/*!*/ self, bool sync) {
     self.RequireOpen();
     self.AutoFlush = sync;
     return sync;
 }
Ejemplo n.º 3
0
 public static int GetLineNumber(RubyIO/*!*/ self) {
     self.RequireOpen();
     return self.LineNumber;
 }
Ejemplo n.º 4
0
 public static bool Sync(RubyIO/*!*/ self) {
     self.RequireOpen();
     return self.AutoFlush;
 }
Ejemplo n.º 5
0
 public static void SetLineNumber(RubyContext /*!*/ context, RubyIO /*!*/ self, [DefaultProtocol] int value)
 {
     self.RequireOpen();
     self.LineNumber = value;
 }
Ejemplo n.º 6
0
 public static int GetLineNumber(RubyIO /*!*/ self)
 {
     self.RequireOpen();
     return(self.LineNumber);
 }
Ejemplo n.º 7
0
 public static bool Sync(RubyIO /*!*/ self, bool sync)
 {
     self.RequireOpen();
     self.AutoFlush = sync;
     return(sync);
 }
Ejemplo n.º 8
0
 public static bool Sync(RubyIO /*!*/ self)
 {
     self.RequireOpen();
     return(self.AutoFlush);
 }