ISfcProperty Interface

Defines properties that can be used to provide information about a property. 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 ISfcProperty
'Usage
Dim instance As ISfcProperty
public interface ISfcProperty
public interface class ISfcProperty
type ISfcProperty =  interface end
public interface ISfcProperty

The ISfcProperty type exposes the following members.

Properties

  Name Description
Public property Attributes Gets the aggregated list of custom attributes that are associated with the property. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Public property Dirty Gets a value that indicates whether the property value has been changed. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Public property Enabled Gets a value that indicates whether the property is enabled. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Public property IsNull Gets a value that indicates whether the property value has been read and is nulla null reference (Nothing in Visual Basic). Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Public property Name Gets the name of the property. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Public property Required Gets a value that indicates whether the property is required to persist the current state of the object. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Public property Type Gets a Type object that represents the type of the property. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Public property Value Gets or sets the value of the property. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Public property Writable Gets a value that indicates whether this is a read-write property. Do not reference this member directly in your code. It supports the SQL Server infrastructure.

Top