Gets the information about a job. Including status and any messages.
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
public IJobInfo GetJobInfo(
	string storeName,
	string jobId
)  | 
| Visual Basic | 
|---|
Public Function GetJobInfo ( 
	storeName As String,
	jobId As String
) As IJobInfo  | 
| Visual C++ | 
|---|
public:
virtual IJobInfo^ GetJobInfo(
	String^ storeName, 
	String^ jobId
) sealed  | 
| F# | 
|---|
abstract GetJobInfo : 
        storeName : string * 
        jobId : string -> IJobInfo 
override GetJobInfo : 
        storeName : string * 
        jobId : string -> IJobInfo  | 
Parameters
- storeName
 - Type: System..::..String
Name of the store where the job is running 
- jobId
 - Type: System..::..String
The Id of the job 
Return Value
Type: 
IJobInfoA JobInfo instance
Implements
IBrightstarService..::..GetJobInfo(String, String)
See Also