DataBus.Remove Method

Definition

Removes the property from the collection.

Overloads

Remove(ISfcProperty)

Removes a property with specified metadata and value from the collection.

Remove(ISfcPropertyProvider)

Removes the specified provider for all properties.

Remove(String)

Removes the specified name of the property of the data bus.

Remove(String, ISfcPropertyProvider)

Removes the specified provider for the property from the Data Bus control.

Remove(ISfcProperty)

Removes a property with specified metadata and value from the collection.

public:
 virtual 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
override this.Remove : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty -> bool
Public Function Remove (property As ISfcProperty) As Boolean

Parameters

property
ISfcProperty

The property of the metadata and value.

Returns

True if success; otherwise, false.

Implements

Applies to

Remove(ISfcPropertyProvider)

Removes the specified provider for all properties.

public:
 virtual 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
override this.Remove : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcPropertyProvider -> bool
Public Function Remove (propertyProvider As ISfcPropertyProvider) As Boolean

Parameters

propertyProvider
ISfcPropertyProvider

The provider of a property.

Returns

True if success; otherwise, false.

Implements

Applies to

Remove(String)

Removes the specified name of the property of the data bus.

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

Parameters

propertyName
String

A string that represents the name of the property.

Returns

True if success; otherwise, false.

Implements

Applies to

Remove(String, ISfcPropertyProvider)

Removes the specified provider for the property from the Data Bus control.

public:
 virtual 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
override this.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 that represents the name of the property.

propertyProvider
ISfcPropertyProvider

The provider of a property.

Returns

True if success; otherwise, false.

Implements

Applies to