Namespace Summary Item CollectionCreate Temporary Item Method
Create a temporary item that isn't part of the project
Definition
Namespace: Sandcastle.Core.Project
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
The NamespaceSummaryItem that can later be added to the project if necessary
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
C#
public NamespaceSummaryItem CreateTemporaryItem(
string name,
bool isGroup
)VB
Public Function CreateTemporaryItem (
name As String,
isGroup As Boolean
) As NamespaceSummaryItemC++
public:
NamespaceSummaryItem^ CreateTemporaryItem(
String^ name,
bool isGroup
)F#
member CreateTemporaryItem :
name : string *
isGroup : bool -> NamespaceSummaryItem Parameters
- name String
- The namespace name
- isGroup Boolean
- True if this is a grouping namespace, false if this is normal namespace
Return Value
NamespaceSummaryItemThe NamespaceSummaryItem that can later be added to the project if necessary
Exceptions
| ArgumentException | This is thrown if the given namespace already exists in the collection. |