Workspace Constructors

Definition

Creates a new instance of the Workspace type.

Overloads

Workspace()

Creates a new instance of the Workspace class.

Workspace(TextSyndicationContent, IEnumerable<ResourceCollectionInfo>)

Creates a new instance of the Workspace class and initializes it with the specified title and collection.

Workspace(String, IEnumerable<ResourceCollectionInfo>)

Creates a new instance of the Workspace class and initializes it with the specified title and collection.

Workspace()

Source:
Workspace.cs
Source:
Workspace.cs
Source:
Workspace.cs
Source:
Workspace.cs

Creates a new instance of the Workspace class.

public:
 Workspace();
public Workspace ();
Public Sub New ()

Applies to

Workspace(TextSyndicationContent, IEnumerable<ResourceCollectionInfo>)

Source:
Workspace.cs
Source:
Workspace.cs
Source:
Workspace.cs
Source:
Workspace.cs

Creates a new instance of the Workspace class and initializes it with the specified title and collection.

public:
 Workspace(System::ServiceModel::Syndication::TextSyndicationContent ^ title, System::Collections::Generic::IEnumerable<System::ServiceModel::Syndication::ResourceCollectionInfo ^> ^ collections);
public Workspace (System.ServiceModel.Syndication.TextSyndicationContent title, System.Collections.Generic.IEnumerable<System.ServiceModel.Syndication.ResourceCollectionInfo> collections);
new System.ServiceModel.Syndication.Workspace : System.ServiceModel.Syndication.TextSyndicationContent * seq<System.ServiceModel.Syndication.ResourceCollectionInfo> -> System.ServiceModel.Syndication.Workspace
Public Sub New (title As TextSyndicationContent, collections As IEnumerable(Of ResourceCollectionInfo))

Parameters

title
TextSyndicationContent

The title of the workspace.

collections
IEnumerable<ResourceCollectionInfo>

The collection the workspace contains.

Applies to

Workspace(String, IEnumerable<ResourceCollectionInfo>)

Source:
Workspace.cs
Source:
Workspace.cs
Source:
Workspace.cs
Source:
Workspace.cs

Creates a new instance of the Workspace class and initializes it with the specified title and collection.

public:
 Workspace(System::String ^ title, System::Collections::Generic::IEnumerable<System::ServiceModel::Syndication::ResourceCollectionInfo ^> ^ collections);
public Workspace (string title, System.Collections.Generic.IEnumerable<System.ServiceModel.Syndication.ResourceCollectionInfo> collections);
new System.ServiceModel.Syndication.Workspace : string * seq<System.ServiceModel.Syndication.ResourceCollectionInfo> -> System.ServiceModel.Syndication.Workspace
Public Sub New (title As String, collections As IEnumerable(Of ResourceCollectionInfo))

Parameters

title
String

The workspace title.

collections
IEnumerable<ResourceCollectionInfo>

The collection the workspace contains.

Applies to