RSINetworkType SynqNetNetworkTypeGet ( void   ) 

Description:
SynqNetNetworkTypeGet returns the type of the network topology.
Returns:
(RSINetworkType) A value to represent String, Dual String, or Ring Network topology.
Sample Code:
  // -- C++ -- //
  if(controller->SynqNetNetworkTypeGet() == RSINetworkTypeRING) {
    printf("Network topology is a RING \n");
  }
  // -- C# -- //
  if(controller.SynqNetNetworkTypeGet() == RSINetworkTypeRING) {
    Console.WriteLine("Network topology is a RING.");
  }
See also:
SynqNetNodeCountGet
Examples:
SynqNetOk.cpp, verifyApp.cpp, and VerifyApp.cs.