ISfcPropertySet Interface
Provides access to a set of properties. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Interface ISfcPropertySet
'Usage
Dim instance As ISfcPropertySet
public interface ISfcPropertySet
public interface class ISfcPropertySet
type ISfcPropertySet = interface end
public interface ISfcPropertySet
The ISfcPropertySet type exposes the following members.
Methods
Name | Description | |
---|---|---|
Contains(String) | Checks whether a property with the specified name is in the property set. Do not reference this member directly in your code. It supports the SQL Server infrastructure. | |
Contains(ISfcProperty) | Checks whether a property with the specified metadata is in the property set. Do not reference this member directly in your code. It supports the SQL Server infrastructure. | |
Contains<T>(String) | Checks whether a property with the specified name and type is in the property set. Do not reference this member directly in your code. It supports the SQL Server infrastructure. | |
EnumProperties | Returns an enumerator that can iterate through the properties in the property set. Do not reference this member directly in your code. It supports the SQL Server infrastructure. | |
TryGetProperty | Attempts to get the property metadata. Do not reference this member directly in your code. It supports the SQL Server infrastructure. | |
TryGetPropertyValue(String, Object%) | Attempts to get the property value. Do not reference this member directly in your code. It supports the SQL Server infrastructure. | |
TryGetPropertyValue<T>(String, T%) | Attempts to get the property value. Do not reference this member directly in your code. It supports the SQL Server infrastructure. |
Top