CompilationUnitManager.Compilation.SymbolsDefinedInNamespace(String) Method
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.
Returns all the names of all callable and types defined in namespace nsName.
public System.Collections.Generic.IEnumerable<string> SymbolsDefinedInNamespace (string nsName);
member this.SymbolsDefinedInNamespace : string -> seq<string>
Public Function SymbolsDefinedInNamespace (nsName As String) As IEnumerable(Of String)
Parameters
- nsName
- String
Returns
The names defined in namespace nsName, or an empty sequence
if nsName does not exist in the compilation.
Remarks
The returned names are unique and do not contain duplications e.g. for types and the corresponding constructor.