This topic has not yet been rated - Rate this topic

CodeDomProvider.Supports Method

Returns a value indicating whether the specified code generation support is provided.

Namespace: System.CodeDom.Compiler
Assembly: System (in system.dll)

public virtual bool Supports (
	GeneratorSupport generatorSupport
)
public boolean Supports (
	GeneratorSupport generatorSupport
)
public function Supports (
	generatorSupport : GeneratorSupport
) : boolean
Not applicable.

Parameters

generatorSupport

A GeneratorSupport object that indicates the type of code generation support to verify.

Return Value

true if the specified code generation support is provided; otherwise, false.
Exception typeCondition

NotImplementedException

Neither this method nor the CreateGenerator method is overridden in a derived class.

This method can be called with a number of GeneratorSupport flags at once to test for a set of capabilities by joining a set of appropriate capability flags together with a binary OR operator (|).

NoteNote:

In the .NET Framework versions 1.0 and 1.1, this method is provided by the ICodeGenerator implementation that is returned by the CreateGenerator method of the provider. In version 2.0, this method can be called directly on the code provider even if it is not overridden by the code provider. If the code provider does not override this method, the ICodeGenerator implementation is called by the base class.

Notes to Inheritors: If you override this method, you must not call the corresponding method of the base class. The base-class method creates a generator in the derived class using the obsolete CreateGenerator method for compatibility with preexisting providers that use code generators. The base-class method then calls the equivalent method in the ICodeGenerator implementation to perform this function. You will get a NotImplementedException if you call the base-class method from a code provider that does not use a code generator.

Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.