IDataBus.Remove Method

Definition

Removes the specified property of the DataBus control.

Overloads

Remove(ISfcProperty)

Removes the property from the collection by metadata.

Remove(ISfcPropertyProvider)

Removes the specified provider for all properties.

Remove(String)

Removes the property from a collection by name.

Remove(String, ISfcPropertyProvider)

Removes the specified provider for the property from the DataBus control.

Remove(ISfcProperty)

Removes the property from the collection by metadata.

public:
 bool Remove(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcProperty ^ property);
public bool Remove (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty property);
abstract member Remove : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty -> bool
Public Function Remove (property As ISfcProperty) As Boolean

Parameters

property
ISfcProperty

The interface that provides information about a property metadata.

Returns

true if success; otherwise, false.

Applies to

Remove(ISfcPropertyProvider)

Removes the specified provider for all properties.

public:
 bool Remove(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcPropertyProvider ^ propertyProvider);
public bool Remove (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcPropertyProvider propertyProvider);
abstract member Remove : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcPropertyProvider -> bool
Public Function Remove (propertyProvider As ISfcPropertyProvider) As Boolean

Parameters

propertyProvider
ISfcPropertyProvider

The interface that provides an access to the properties.

Returns

true if success; otherwise, false.

Applies to

Remove(String)

Removes the property from a collection by name.

public:
 bool Remove(System::String ^ propertyName);
public bool Remove (string propertyName);
abstract member Remove : string -> bool
Public Function Remove (propertyName As String) As Boolean

Parameters

propertyName
String

A String method that contains the name of the property.

Returns

true if success; otherwise, false.

Applies to

Remove(String, ISfcPropertyProvider)

Removes the specified provider for the property from the DataBus control.

public:
 bool Remove(System::String ^ name, Microsoft::SqlServer::Management::Sdk::Sfc::ISfcPropertyProvider ^ propertyProvider);
public bool Remove (string name, Microsoft.SqlServer.Management.Sdk.Sfc.ISfcPropertyProvider propertyProvider);
abstract member Remove : string * Microsoft.SqlServer.Management.Sdk.Sfc.ISfcPropertyProvider -> bool
Public Function Remove (name As String, propertyProvider As ISfcPropertyProvider) As Boolean

Parameters

name
String

A String method that contains the name of the specified property.

propertyProvider
ISfcPropertyProvider

The interface that provides an access to the properties.

Returns

true if success; otherwise, false.

Applies to