예제 #1
0
 internal void Store(string wsUrl, bool post, BaseOptions options, string data)
 {
     if (isStatic)
     {
         static_ws_url = wsUrl;
         static_post = post;
         static_options = options;
         static_data = data;
         return;
     }
     instance_ws_url = wsUrl;
     instance_post = post;
     instance_options = options;
     instance_data = data;
 }
예제 #2
0
 internal void Store(string wsUrl, bool post, BaseOptions options)
 {
     Store(wsUrl, post, options, null);
 }