File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,9 @@ public class NetworkTable : ITable, IRemote
8181 /// <summary>The default port NetworkTables listens on.</summary>
8282 public const uint DefaultPort = 1735 ;
8383
84+ /// <summary>
85+ /// The default file name used for Persistent Storage.
86+ /// </summary>
8487 public const string DefaultPersistentFileName = "networktables.ini" ;
8588 internal static uint Port { get ; private set ; } = DefaultPort ;
8689 internal static string IPAddress { get ; private set ; } = "" ;
@@ -137,15 +140,12 @@ public static void Shutdown()
137140 }
138141
139142 /// <summary>
140- /// Sets NetworkTables to be a client
143+ /// Sets NetworkTables to be a client.
141144 /// </summary>
142145 /// <exception cref="InvalidOperationException">This is thrown if Network Tables
143146 /// has already been initialized.</exception>
144- /// /// <summary>
145- /// Sets that network tables should be in client mode.
146- /// </summary>
147147 /// <remarks>This or <see cref="SetServerMode"/> must be called
148- /// before <see cref="Initialize"/> or <see cref="GetTable(string)"/></remarks>
148+ /// before <see cref="Initialize"/> or <see cref="GetTable(string)"/>. </remarks>
149149 public static void SetClientMode ( )
150150 {
151151 if ( Client )
You can’t perform that action at this time.
0 commit comments