SPFarm Class
Assembly: Microsoft.SharePoint (in microsoft.sharepoint.dll)
The SPFarm object is the top node in the extensible configuration object model, which is designed to interact with the configuration data store. It contains global settings for all the servers, services, and solutions that are installed in a server farm. Use the Servers, Services, or Solutions property to retrieve these collections.
To access the current server farm object, you can use members on SPFarm.Local. For example, to return an SPServiceCollection object that represents the collection of services in the current server farm, use SPFarm.Local.Services. In addition, you can use the Farm property of classes that derive from the SPPersistedObject class, or you can use the Farm property of the SPSolution class, to get the server farm of the current object or solution.
The following example registers a custom job definition on each Web application within the current server farm.
SPFarm farm = SPFarm.Local; SPWebService service = farm.Services.GetValue<SPWebService>(""); foreach (SPWebApplication webApp in service.WebApplications) { foreach (SPJobDefinition job in webApp.JobDefinitions) { if (job.Name == "MyCustomJobDefinitionName") { j.Delete(); } } MyCustomJobDefinition newJob = new MyCustomJobDefinition("MyCustomJobDefinitionName", webApp); SPSchedule schedule = SPSchedule.FromString("every 5 minutes between 0 and 59"); newJob.Schedule = schedule; newJob.Update(); }