MetadataSet Constructors

Definition

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.

Applies to