|  | BuildProcessGetReferencedNamespaces Method | 
            This is used to get an enumerable list of unique namespaces from the given reflection data file
            
 
Namespace: SandcastleBuilder.Utils.BuildEngineAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
 Syntax
Syntaxpublic IEnumerable<string> GetReferencedNamespaces(
	string reflectionInfoFile,
	IEnumerable<string> validNamespaces
)
Public Function GetReferencedNamespaces ( 
	reflectionInfoFile As String,
	validNamespaces As IEnumerable(Of String)
) As IEnumerable(Of String)
public:
IEnumerable<String^>^ GetReferencedNamespaces(
	String^ reflectionInfoFile, 
	IEnumerable<String^>^ validNamespaces
)
member GetReferencedNamespaces : 
        reflectionInfoFile : string * 
        validNamespaces : IEnumerable<string> -> IEnumerable<string> 
Parameters
- reflectionInfoFile
- Type: SystemString
 The reflection data file to search for namespaces
- validNamespaces
- Type: System.Collections.GenericIEnumerableString
 An enumerable list of valid namespaces
Return Value
Type: 
IEnumerableStringAn enumerable list of unique namespaces
 See Also
See Also