The main class used to integrate Typemock Isolator with other applications.
Inheritance Hierarchy
TypeMock.IntegrationService
Namespace: TypeMock.Integration
Assembly: TypeMock.Integration (in TypeMock.Integration.dll) Version: 8.0.0.0 (8.0.0.0)
Syntax
The Service type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | Service |
Properties
Name | Description | |
---|---|---|
![]() ![]() | InstallDirectory |
Retrieve the Typemock Isolator installation directory
|
![]() ![]() | IsInstalled |
Check if Typemock Isolator is installed on the machine
|
Methods
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() | GetCoverageTools |
Get list of profilers available to link with Typemock Isolator
|
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() ![]() | HasLicenseForAutodeploy | Obsolete.
Check if the running machine has license for Auto Deploying TypeMock
|
![]() ![]() | HasLicenseToLink | Obsolete.
Check if the running machine has license for linking TypeMock with coverage tool
|
![]() ![]() | InstallFrom |
Install (AutoDeploy) Typemock Isolator from a specific directory. (This requires an Enterprise License)
|
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Remarks
As this assembly is used for integration, it is version agnostic and is both backward and forward compatible. This assembly does not require other Typemock Isolator assemblies and can be deployed separately
Examples
C#
public void DoAutoDeploy(string path) { if(!Service.HasLicenseForAutodeploy()) { Console.WriteLine("You don't have license for Auto Deploy TypeMock"); return; } Service.InstallFrom(path); }
See Also