ObjectSet Class
The T:Microsoft.SqlServer.Management.Smo.ObjectSet object represents a policy-based management set of objects.
Assembly: Microsoft.SqlServer.Dmf (in Microsoft.SqlServer.Dmf.dll)
Microsoft.SqlServer.Management.Sdk.Sfc::SfcInstance
Microsoft.SqlServer.Management.Dmf::ObjectSet
[StrongNameIdentityPermissionAttribute(SecurityAction::LinkDemand, PublicKey = "0024000004800000940000000602000000240000525341310004000001000100272736ad6e5f9586bac2d531eabc3acc666c2f8ec879fa94f8f7b0327d2ff2ed523448f83c3d5c5dd2dfc7bc99c5286b2c125117bf5cbe242b9d41750732b2bdffe649c6efb8e5526d526fdd130095ecdb7bf210809c6cdad8824faa9ac0310ac3cba2aa0523567b2dfa7fe250b30facbd62d4ec99b94ac47c7d3b28f1f6e4c8")] public ref class ObjectSet sealed : SfcInstance, ISfcCreatable, ICreatable, ISfcDroppable, IDroppable, ISfcAlterable, IAlterable, ISfcValidate
| Name | Description | |
|---|---|---|
![]() | ObjectSet() | Initializes a new instance of the ObjectSet class. |
![]() | ObjectSet(PolicyStore^, String^) | Initializes a new instance of the ObjectSet class that has the specified parent policy store and the specified name. |
| Name | Description | |
|---|---|---|
![]() | AbstractIdentityKey | Do not reference this member directly in your code. It supports the SQL Server infrastructure.(Inherited from SfcInstance.) |
![]() | Facet | Gets or sets the facet value for the object set. |
![]() | ID | Gets the ID value that uniquely identifies the object set. |
![]() | IdentityKey | Gets the SfcKey object. |
![]() | IsSystemObject | Determines whether the ObjectSet is a Object. |
![]() | Metadata | Returns metadata about the instance and its domain.(Inherited from SfcInstance.) |
![]() | Name | Gets the name of the object set. |
![]() | Parent | Gets or sets the parent of the ObjectSet object. |
![]() | Properties | Returns a collection instance properties.(Inherited from SfcInstance.) |
![]() | State | Returns the state of the SfcInstance object.(Inherited from SfcInstance.) |
![]() | TargetSets | Gets the TargetSetCollection. |
![]() | Urn | Returns the uniform resource name of the SfcInstance object.(Inherited from SfcInstance.) |
| Name | Description | |
|---|---|---|
![]() | Alter() | Alters the definition of an ObjectSet created previously. |
![]() | CalculateTargets(ISfcConnection^) | Calculates an expression with results applied to the targets. |
![]() ![]() | CalculateTargets(ISfcConnection^, SfcQueryExpression^) | Calculates an expression with results applied to the targets. |
![]() | CalculateTargets(SqlStoreConnection^, Condition^, AdHocPolicyEvaluationMode, String^, array<Object^>^%, array<TargetEvaluation^>^%) | Calculates an expression with results applied to the targets. |
![]() | CalculateTargets(SqlStoreConnection^, String^) | Calculates an expression with results applied to the targets. |
![]() | Create() | Creates an ObjectSet without parent. |
![]() | CreateIdentityKey() | Do not reference this member directly in your code. It supports the SQL Server infrastructure.(Inherited from SfcInstance.) |
![]() | Discover(ISfcDependencyDiscoveryObjectSink^) | Discovers an ObjectSet and adds it to the sink object identified by the parameter.(Overrides SfcInstance::Discover(ISfcDependencyDiscoveryObjectSink^).) |
![]() | Drop() | Drops an ObjectSet. |
![]() | Equals(Object^) | (Inherited from Object.) |
![]() | GetChildCollection(String^) | Do not reference this member directly in your code. It supports the SQL Server infrastructure.(Inherited from SfcInstance.) |
![]() | GetDomain() | Do not reference this member directly in your code. It supports the SQL Server infrastructure.(Inherited from SfcInstance.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() ![]() | GetObjectFactory() | Gets the object factory. |
![]() | GetPropertySet() | Returns the set of properties for the SfcInstance object.(Inherited from SfcInstance.) |
![]() | GetType() | (Inherited from Object.) |
![]() | GetTypeMetadataImpl() | Indicates the domains that override by returning the right TypeMetadata class directly. Do not reference this member directly in your code. It supports the SQL Server infrastructure.(Inherited from SfcInstance.) |
![]() | InitializeUIPropertyState() | Do not reference this member directly in your code. It supports the SQL Server infrastructure.(Inherited from SfcInstance.) |
![]() | OnPropertyMetadataChanges(SfcPropertyMetadataChangedEventArgs^) | Invoked whenever the effective value of any SfcInstance metadata is updated. (Inherited from SfcInstance.) |
![]() | OnPropertyValueChanges(PropertyChangedEventArgs^) | Invoked whenever the effective value of any SfcInstance property is updated. (Inherited from SfcInstance.) |
![]() | Refresh() | Refreshes the object's properties by reading them from the server.(Inherited from SfcInstance.) |
![]() | ResetKey() | Do not reference this member directly in your code. It supports the SQL Server infrastructure.(Inherited from SfcInstance.) |
![]() | ScriptAlter() | Alters a previously created ISfcScript object. |
![]() | ScriptCreate() | Creates a ISfcScript object. |
![]() | ScriptDrop() | Drops an ISfcScript object. |
![]() | Serialize(XmlWriter^) | Serializes the instance to XML.(Inherited from SfcInstance.) |
![]() | SetFacetWithDomain(String^, String^) | Sets a facet on the ObjectSet with an ISfcDomain object specified by the domain parameter. |
![]() | ToString() | Returns a string representation of the instance Urn.(Inherited from SfcInstance.) |
![]() | Validate(String^) | Validates the ObjectSet object. |
| Name | Description | |
|---|---|---|
![]() | PropertyChanged | Occurs when a property value changes.(Inherited from SfcInstance.) |
![]() | PropertyMetadataChanged | Occurs when the metadata for a property has changed.(Inherited from SfcInstance.) |
| Name | Description | |
|---|---|---|
![]() ![]() | ISfcValidate::Validate(String^, array<Object^>^) | Validates an ObjectSet. |
A target object set is the resulting set of target objects after applying a filter to an instance of SQL Server. Using a T:System.Filter object, you can create a T:Microsoft.SqlServer.Management.Sdk.SFC.Urn object which you can use to create an XPath expression. The XPath expression can be used to specify a skeleton XPath expression which filters the target objects out of the object set.
C#
SFC.Urn urn = new SFC.Urn(filter);
SFC.XPathExpression xpe = urn.XPathExpression;
string ts_skeleton = urn.XPathExpression.ExpressionSkeleton;
ObjectSet os = new ObjectSet(p.Parent, p.Name + "ObjectSet");
os.Facet = p.Parent.Conditions[p.Condition].Facet;
TargetSet ts = os.TargetSets[ts_skeleton];
ts.Enabled = true;
for (int i = 1; i < xpe.Length; i++)
{
if (null != xpe[i].Filter)
{
string skeleton = urn.XPathExpression.BlockExpressionSkeleton(i);
TargetSetLevel cr = ts.GetLevel(skeleton);
ExpressionNode expr = ExpressionNode.ConvertFromFilterNode(xpe[i].Filter);
Condition c = ConditionObject.Create(p.Parent, cr.TargetType.Name, expr);
ts.SetLevelCondition(cr, c.Name);
}
}
os.Create();
p.ObjectSet = os.Name;
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.







