EntitiesDescriptor Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the EntitiesDescriptor class.
Overloads
EntitiesDescriptor() |
Initializes a new instance of the EntitiesDescriptor class. |
EntitiesDescriptor(Collection<EntitiesDescriptor>) |
Initializes a new instance of the EntitiesDescriptor class with the specified collection of child EntitiesDescriptor. |
EntitiesDescriptor(Collection<EntityDescriptor>) |
Initializes a new instance of the EntitiesDescriptor class with the specified collection of child EntityDescriptor. |
EntitiesDescriptor(Collection<EntityDescriptor>, Collection<EntitiesDescriptor>) |
Initializes a new instance of the EntitiesDescriptor class with the specified collection of child EntityDescriptor and the specified collection of child EntitiesDescriptor. |
EntitiesDescriptor()
Initializes a new instance of the EntitiesDescriptor class.
public:
EntitiesDescriptor();
public EntitiesDescriptor ();
Public Sub New ()
Remarks
The ChildEntities and ChildEntityGroups properties are initialized to empty collections in the new instance.
Applies to
EntitiesDescriptor(Collection<EntitiesDescriptor>)
Initializes a new instance of the EntitiesDescriptor class with the specified collection of child EntitiesDescriptor.
public:
EntitiesDescriptor(System::Collections::ObjectModel::Collection<System::IdentityModel::Metadata::EntitiesDescriptor ^> ^ entityGroupList);
public EntitiesDescriptor (System.Collections.ObjectModel.Collection<System.IdentityModel.Metadata.EntitiesDescriptor> entityGroupList);
new System.IdentityModel.Metadata.EntitiesDescriptor : System.Collections.ObjectModel.Collection<System.IdentityModel.Metadata.EntitiesDescriptor> -> System.IdentityModel.Metadata.EntitiesDescriptor
Public Sub New (entityGroupList As Collection(Of EntitiesDescriptor))
Parameters
- entityGroupList
- Collection<EntitiesDescriptor>
The entities descriptor collection. Initializes the ChildEntityGroups property.
Applies to
EntitiesDescriptor(Collection<EntityDescriptor>)
Initializes a new instance of the EntitiesDescriptor class with the specified collection of child EntityDescriptor.
public:
EntitiesDescriptor(System::Collections::ObjectModel::Collection<System::IdentityModel::Metadata::EntityDescriptor ^> ^ entityList);
public EntitiesDescriptor (System.Collections.ObjectModel.Collection<System.IdentityModel.Metadata.EntityDescriptor> entityList);
new System.IdentityModel.Metadata.EntitiesDescriptor : System.Collections.ObjectModel.Collection<System.IdentityModel.Metadata.EntityDescriptor> -> System.IdentityModel.Metadata.EntitiesDescriptor
Public Sub New (entityList As Collection(Of EntityDescriptor))
Parameters
- entityList
- Collection<EntityDescriptor>
The entity descriptor collection. Initializes the ChildEntities property.
Applies to
EntitiesDescriptor(Collection<EntityDescriptor>, Collection<EntitiesDescriptor>)
Initializes a new instance of the EntitiesDescriptor class with the specified collection of child EntityDescriptor and the specified collection of child EntitiesDescriptor.
public:
EntitiesDescriptor(System::Collections::ObjectModel::Collection<System::IdentityModel::Metadata::EntityDescriptor ^> ^ entityList, System::Collections::ObjectModel::Collection<System::IdentityModel::Metadata::EntitiesDescriptor ^> ^ entityGroupList);
public EntitiesDescriptor (System.Collections.ObjectModel.Collection<System.IdentityModel.Metadata.EntityDescriptor> entityList, System.Collections.ObjectModel.Collection<System.IdentityModel.Metadata.EntitiesDescriptor> entityGroupList);
new System.IdentityModel.Metadata.EntitiesDescriptor : System.Collections.ObjectModel.Collection<System.IdentityModel.Metadata.EntityDescriptor> * System.Collections.ObjectModel.Collection<System.IdentityModel.Metadata.EntitiesDescriptor> -> System.IdentityModel.Metadata.EntitiesDescriptor
Public Sub New (entityList As Collection(Of EntityDescriptor), entityGroupList As Collection(Of EntitiesDescriptor))
Parameters
- entityList
- Collection<EntityDescriptor>
The entity descriptor collection. Initializes the ChildEntities property.
- entityGroupList
- Collection<EntitiesDescriptor>
The entities descriptor collection. Initializes the ChildEntityGroups property.