當前位置: 首頁>>代碼示例>>VB.NET>>正文


VB.NET EventInfo.IsMulticast屬性代碼示例

本文整理匯總了VB.NET中System.Reflection.EventInfo.IsMulticast屬性的典型用法代碼示例。如果您正苦於以下問題:VB.NET EventInfo.IsMulticast屬性的具體用法?VB.NET EventInfo.IsMulticast怎麽用?VB.NET EventInfo.IsMulticast使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在System.Reflection.EventInfo的用法示例。


在下文中一共展示了EventInfo.IsMulticast屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。

示例1: MainClass

' 導入命名空間
Imports System.Reflection


Public Class MainClass

   Public Shared Sub Main()
        Dim Book = New Derived()

        Dim Member As MemberInfo
        Console.WriteLine("Members:")
        For Each Member In Book.GetType.GetMembers()
            Console.WriteLine(Member.Name & " " & Member.MemberType)
        Next

        Dim PropertyObj As PropertyInfo
        Console.WriteLine("Properties:")
        For Each PropertyObj In Book.GetType.GetProperties()
            Console.WriteLine(PropertyObj.Name & " " & PropertyObj.PropertyType.ToString())
        Next

        Dim MethodObj As MethodInfo
        Console.WriteLine("Methods:")
        For Each MethodObj In Book.GetType.GetMethods()
            Console.WriteLine(MethodObj.Name & " " & MethodObj.ReturnType.ToString())
        Next

        Dim EventObj As EventInfo
        Console.WriteLine("Events:")
        For Each EventObj In Book.GetType.GetEvents()
            Console.WriteLine(EventObj.Name & " " & EventObj.IsMulticast)
        Next

        Dim InterfaceObj As Type
        Console.WriteLine("Events:")
        For Each InterfaceObj In Book.GetType.GetInterfaces()
            Console.WriteLine(InterfaceObj.Name)
        Next

   
   End Sub

End Class 
    Class Base
        Public ProductID As String
        Public Weight As Double
        Private ProductPrice As Double

        Public Sub New()
        End Sub

        Public ReadOnly Property Price() As Double
            Get
                Return 0
            End Get
        End Property

    End Class

    Class Derived
        Inherits Base
        Implements IFormattable

        Public Title As String
        Public Author As String
        Public Publisher As String

        Public Overridable Overloads Function ToString(ByVal _
          Format As String, ByVal Provider As IFormatProvider) _
          As String Implements IFormattable.ToString

            ToString = Title

        End Function

        Public Sub New()
            MyBase.New()

        End Sub

    End Class
開發者ID:VB程序員,項目名稱:System.Reflection,代碼行數:81,代碼來源:EventInfo.IsMulticast


注:本文中的System.Reflection.EventInfo.IsMulticast屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。