GraphStorageManagement.statusEventHandler.getStatus C# (CSharp) Method

getStatus() public method

public getStatus ( ) : int
return int
        public int getStatus(){
            return state;
        }
        public String getText()

Usage Example

Ejemplo n.º 1
0
 private void select_network(object sender, statusEventHandler e)
 {
     if (e.getStatus() == 0)
     {
         ask_for_network();
         return;
     }
     generate_graph(e.getText());
 }