Organization 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 Organization class.
Overloads
Organization() |
Initializes a new instance of the Organization class. |
Organization(LocalizedEntryCollection<LocalizedName>, LocalizedEntryCollection<LocalizedName>, LocalizedEntryCollection<LocalizedUri>) |
Initializes a new instance of the Organization class that has the specified collection of names, display names, and URIs. |
Organization()
Initializes a new instance of the Organization class.
public:
Organization();
public Organization ();
Public Sub New ()
Remarks
The DisplayNames, Names, and Urls properties in the new instance are each initialized to an empty collection of the appropriate type.
Applies to
Organization(LocalizedEntryCollection<LocalizedName>, LocalizedEntryCollection<LocalizedName>, LocalizedEntryCollection<LocalizedUri>)
Initializes a new instance of the Organization class that has the specified collection of names, display names, and URIs.
public:
Organization(System::IdentityModel::Metadata::LocalizedEntryCollection<System::IdentityModel::Metadata::LocalizedName ^> ^ names, System::IdentityModel::Metadata::LocalizedEntryCollection<System::IdentityModel::Metadata::LocalizedName ^> ^ displayNames, System::IdentityModel::Metadata::LocalizedEntryCollection<System::IdentityModel::Metadata::LocalizedUri ^> ^ urls);
public Organization (System.IdentityModel.Metadata.LocalizedEntryCollection<System.IdentityModel.Metadata.LocalizedName> names, System.IdentityModel.Metadata.LocalizedEntryCollection<System.IdentityModel.Metadata.LocalizedName> displayNames, System.IdentityModel.Metadata.LocalizedEntryCollection<System.IdentityModel.Metadata.LocalizedUri> urls);
new System.IdentityModel.Metadata.Organization : System.IdentityModel.Metadata.LocalizedEntryCollection<System.IdentityModel.Metadata.LocalizedName> * System.IdentityModel.Metadata.LocalizedEntryCollection<System.IdentityModel.Metadata.LocalizedName> * System.IdentityModel.Metadata.LocalizedEntryCollection<System.IdentityModel.Metadata.LocalizedUri> -> System.IdentityModel.Metadata.Organization
Public Sub New (names As LocalizedEntryCollection(Of LocalizedName), displayNames As LocalizedEntryCollection(Of LocalizedName), urls As LocalizedEntryCollection(Of LocalizedUri))
Parameters
A collection of LocalizedName that contains the names for this instance.
- displayNames
- LocalizedEntryCollection<LocalizedName>
A collection of LocalizedName that contains the display names for this instance.
A collection of LocalizedUri that contains the URLs for this instance.
Exceptions
If any of the input parameters is null.