Type.IsInterface-Eigenschaft
Ruft einen Wert ab, der angibt, ob Type eine Schnittstelle ist, d. h. weder eine Klasse noch ein Werttyp.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property IsInterface As Boolean
'Usage
Dim instance As Type
Dim value As Boolean
value = instance.IsInterface
public bool IsInterface { get; }
public:
virtual property bool IsInterface {
bool get () sealed;
}
/** @property */
public final boolean get_IsInterface ()
public final function get IsInterface () : boolean
Eigenschaftenwert
true, wenn Type eine Schnittstelle ist, andernfalls false.
Hinweise
ClassSemanticsMask kennzeichnet eine Typdeklaration als Klassen-, Schnittstellen- oder Werttyp.
Wenn der aktuelle Type einen Typparameter in der Definition eines generischen Typs oder einer generischen Methoden darstellt, gibt diese Eigenschaft immer false zurück.
Diese Eigenschaft ist schreibgeschützt.
Beispiel
Im folgenden Beispiel wird eine Schnittstelle erstellt, der Schnittstellentyp wird überprüft, und es wird angegeben, ob bei einer Klasse die IsInterface-Eigenschaft festgelegt wurde.
Imports System
Imports Microsoft.VisualBasic
' Declare an interface.
Interface myIFace
End Interface 'myIFace
Class MyIsInterface
Public Shared Sub Main()
Try
' Get the IsInterface attribute for myIFace.
Dim myBool1 As Boolean = GetType(myIFace).IsInterface
' Display the IsInterface attribute for myIFace.
Console.WriteLine("Is the specified type an interface? {0}.", myBool1.ToString)
' Get the IsInterface attribute for MyIsInterface.
Dim myBool2 As Boolean = GetType(MyIsInterface).IsInterface
' Display the IsInterface attribute for MyIsInterface.
Console.WriteLine("Is the specified type an interface? {0}.", myBool2.ToString)
Catch e As Exception
Console.WriteLine(ControlChars.Cr + "An exception occurred: {0}", e.Message.ToString)
End Try
End Sub 'Main
End Class 'MyIsInterface
using System;
// Declare an interface.
interface myIFace
{
}
class MyIsInterface
{
public static void Main(string []args)
{
try
{
// Get the IsInterface attribute for myIFace.
bool myBool1 = typeof(myIFace).IsInterface;
//Display the IsInterface attribute for myIFace.
Console.WriteLine("Is the specified type an interface? {0}.", myBool1);
// Get the attribute IsInterface for MyIsInterface.
bool myBool2 = typeof(MyIsInterface).IsInterface;
//Display the IsInterface attribute for MyIsInterface.
Console.WriteLine("Is the specified type an interface? {0}.", myBool2);
}
catch(Exception e)
{
Console.WriteLine("\nAn exception occurred: {0}.", e.Message);
}
}
}
using namespace System;
// Declare an interface.
interface class myIFace{};
public ref class MyIsInterface{};
void main()
{
try
{
// Get the IsInterface attribute for myIFace.
bool myBool1 = myIFace::typeid->IsInterface;
//Display the IsInterface attribute for myIFace.
Console::WriteLine( "Is the specified type an interface? {0}.", myBool1 );
// Get the attribute IsInterface for MyIsInterface.
bool myBool2 = MyIsInterface::typeid->IsInterface;
//Display the IsInterface attribute for MyIsInterface.
Console::WriteLine( "Is the specified type an interface? {0}.", myBool2 );
}
catch ( Exception^ e )
{
Console::WriteLine( "\nAn exception occurred: {0}.", e->Message );
}
}
import System.*;
// Declare an interface.
interface myIFace
{
} //myIFace
class MyIsInterface
{
public static void main(String[] args)
{
try {
// Get the IsInterface attribute for myIFace.
boolean myBool1 = myIFace.class.ToType().get_IsInterface();
//Display the IsInterface attribute for myIFace.
Console.WriteLine("Is the specified type an interface? {0}.",
System.Convert.ToString(myBool1));
// Get the attribute IsInterface for MyIsInterface.
boolean myBool2 = MyIsInterface.class.ToType().get_IsInterface();
//Display the IsInterface attribute for MyIsInterface.
Console.WriteLine("Is the specified type an interface? {0}.",
System.Convert.ToString(myBool2));
}
catch (System.Exception e) {
Console.WriteLine("\nAn exception occurred: {0}.",
e.get_Message());
}
} //main
} //MyIsInterface
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
Type-Klasse
Type-Member
System-Namespace
TypeAttributes
Type.IsClass-Eigenschaft
IsValueType