bigloo.binary_port.flush C# (CSharp) Method

flush() public method

public flush ( ) : binary_port
return binary_port
        public binary_port flush()
        {
            stream.Flush();
            return this;
        }

Usage Example

示例#1
0
 public static Object bgl_flush_binary_port( binary_port p )
 {
     return p.flush();
 }