示例#1
0
 /// <summary>
 /// Creates a v0.3 service
 /// </summary>
 public ServiceV0_3(IServiceFactory factory, JsonDictionary values, FactoryParameters param)
     : base(factory, values, param)
 {
     // If no BasePath has been set, then retrieve it from the json document
     if (BasePath.IsNullOrEmpty())
     {
         BasePath = information.GetMandatoryValue <string>(RestBasePathField);
     }
 }