BackendlessAPI.Service.GeoService.AddCategory C# (CSharp) Method

AddCategory() public method

public AddCategory ( string categoryName ) : BackendlessAPI.Geo.GeoCategory
categoryName string
return BackendlessAPI.Geo.GeoCategory
    public GeoCategory AddCategory( string categoryName )
    {
      CheckCategoryName( categoryName );

      return Invoker.InvokeSync<GeoCategory>( GEO_MANAGER_SERVER_ALIAS, "addCategory",
                                              new object[] { Backendless.AppId, Backendless.VersionNum, categoryName } );
    }

Same methods

GeoService::AddCategory ( string categoryName, AsyncCallback callback ) : void