Initializes a new instance of the BCSMetadata class.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public BCSMetadata(
	BCServiceProvider services,
	BCRepository currentObject,
	IWin32Window owner
)
Visual Basic
Public Sub New ( _
	services As BCServiceProvider, _
	currentObject As BCRepository, _
	owner As IWin32Window _
)
Visual C++
public:
BCSMetadata(
	BCServiceProvider^ services, 
	BCRepository^ currentObject, 
	IWin32Window^ owner
)

Parameters

services
Type: BlueCieloECM.InnoCielo.Meridian.Client..::..BCServiceProvider
The context containing the IAMMetaDataService service.
currentObject
Type: BlueCieloECM.InnoCielo.Meridian.Server..::..BCRepository
The object of which to initialize the metadata.
owner
Type: System.Windows.Forms..::..IWin32Window
Any object that implements the IWin32Window interface that represents the top-level window that will own the modal dialog box.

Remarks

The metadata of the services is initialized with the currentObject. That is why you should not create several instances of the BCSMetadata class with the same context services.

See Also