This document is archived and information here might be outdated.  Recommended version.


ICadastralFabric.GetJob Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IC > ICadastralFabric Interface > ICadastralFabric.GetJob Method
ArcGIS Developer Help

ICadastralFabric.GetJob Method

Retrieves a cadastral job given its name.

[Visual Basic .NET]
Public Function GetJob ( _
    ByVal Name As String _
) As ICadastralJob
[C#]
public ICadastralJob GetJob (
    string Name
);
[C++]
HRESULT GetJob(
  BSTR Name
);
[C++]
Parameters
Name [in]

Name is a parameter of type BSTR

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Errors Returned

FDO_E_CADASTRAL_FABRIC_JOB_NOT_FOUND : A job with that name does not exist in the Cadastral Fabric dataset.

Remarks

Retrieve a Cadastral Job by its name.

The GetJob method can be used to retrieve any active cadastral job of the fabric given the name of the job.

[C++]

HRESULT GetJob(

BSTR Name,

ICadastralJob** Job

);

See Also

ICadastralFabric Interface