MetadataSet 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 MetadataSet class.
Overloads
MetadataSet() |
Initializes a new instance of the MetadataSet class. |
MetadataSet(IEnumerable<MetadataSection>) |
Initializes a new instance of the MetadataSet class that contains the specified collection of MetadataSection objects. |
MetadataSet()
Initializes a new instance of the MetadataSet class.
public:
MetadataSet();
public MetadataSet ();
Public Sub New ()
Remarks
Creates a new MetadataSet object.
Applies to
MetadataSet(IEnumerable<MetadataSection>)
Initializes a new instance of the MetadataSet class that contains the specified collection of MetadataSection objects.
public:
MetadataSet(System::Collections::Generic::IEnumerable<System::ServiceModel::Description::MetadataSection ^> ^ sections);
public MetadataSet (System.Collections.Generic.IEnumerable<System.ServiceModel.Description.MetadataSection> sections);
new System.ServiceModel.Description.MetadataSet : seq<System.ServiceModel.Description.MetadataSection> -> System.ServiceModel.Description.MetadataSet
Public Sub New (sections As IEnumerable(Of MetadataSection))
Parameters
- sections
- IEnumerable<MetadataSection>
The metadata values that the MetadataSet is to contain.
Remarks
Creates a new MetadataSet from sections
.