Click or drag to resize

BCServiceProvider Class

Represents a context that encapsulates additional information to manage a client object.
Inheritance Hierarchy
SystemObject
  BlueCieloECM.InnoCielo.MeridianDisposableObject
    BlueCieloECM.InnoCielo.Meridian.ClientBCServiceProvider

Namespace:  BlueCieloECM.InnoCielo.Meridian.Client
Assembly:  BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntax
[ComVisibleAttribute(true)]
[ClassInterfaceAttribute(ClassInterfaceType.None)]
[GuidAttribute("A9112228-CD91-3F6B-8D2E-5A35B59A2564")]
public class BCServiceProvider : DisposableObject

The BCServiceProvider type exposes the following members.

Constructors
  NameDescription
Public methodBCServiceProvider
Initializes a new instance of the BCServiceProvider class.
Public methodBCServiceProvider(BCRepository)
Initializes a new instance of the BCServiceProvider class.
Public methodBCServiceProvider(BCRepository, IWin32Window)
Initializes a new instance of the BCServiceProvider class.
Public methodBCServiceProvider(BCRepository, BCServiceProvider, IWin32Window)
Initializes a new instance of the BCServiceProvider class.
Top
Properties
  NameDescription
Public propertyIsDisposed
Gets a value indicating whether the object has been disposed of.
(Inherited from DisposableObject.)
Public propertyItem
Gets or sets the value associated with the specified key.
Public propertyUnderlyingObject
Gets the underlying wrapped object.
(Inherited from DisposableObject.)
Top
Methods
  NameDescription
Public methodAdd
Adds the specified key and value to the context.
Public methodClear
Clears the context by removing all keys and values from the context.
Public methodContainsKey
Determines whether the context contains the specified key.
Public methodDispose
Releases the underlying wrapped object explicitly.
(Inherited from DisposableObject.)
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Protected methodOnDispose (Overrides DisposableObjectOnDispose.)
Public methodRemove
Removes the value with the specified key from the context.
Protected methodThrowIfDisposed
Throws the ObjectDisposedException exception if the underlying object has been disposed.
(Inherited from DisposableObject.)
Public methodToString (Inherited from Object.)
Public methodTryGetValue
Gets the value associated with the specified key.
Top
Remarks

Available client services: DAMServiceProvider, IAMStall, IAMMetaDataService, IAMEnvironmentService, IAMClientApp, IAMViewAsyncService, IAMViewX, IWatermark, IAMAclService, IAMCallBack, IAMObjectExtender, IAMBatch2, IASBatchOperation, IAMPropertySheetCtl, IAMImportHost, IAMRefreshHost, IAMPagesFrame.

Examples
The following C# code example shows how to get a service.
// Use BC Meridian COM interfaces directly (from PIA).
Guid mdServiceID = typeof(IAMMetadataService).GUID;
IAMMetadataService mdService = (IAMMetadataService)serviceProvider[mdServiceID];
See Also