EventItfInfo.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / InteropServices / TCEAdapterGen / EventItfInfo.cs / 1305376 / EventItfInfo.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
namespace System.Runtime.InteropServices.TCEAdapterGen {
 
    using System; 
    using System.Reflection;
    using System.Collections; 

    internal class EventItfInfo
    {
        public EventItfInfo(String strEventItfName, 
                            String strSrcItfName,
                            String strEventProviderName, 
                            RuntimeAssembly asmImport, 
                            RuntimeAssembly asmSrcItf)
        { 
            m_strEventItfName = strEventItfName;
            m_strSrcItfName = strSrcItfName;
            m_strEventProviderName = strEventProviderName;
            m_asmImport = asmImport; 
            m_asmSrcItf = asmSrcItf;
        } 
 
        public Type GetEventItfType()
        { 
            Type t = m_asmImport.GetType(m_strEventItfName, true, false);
            if (t != null && !t.IsVisible)
                t = null;
            return t; 
        }
 
        public Type GetSrcItfType() 
        {
            Type t = m_asmSrcItf.GetType(m_strSrcItfName, true, false); 
            if (t != null && !t.IsVisible)
                t = null;
            return t;
        } 

        public String GetEventProviderName() 
        { 
            return m_strEventProviderName;
        } 

        private String m_strEventItfName;
        private String m_strSrcItfName;
        private String m_strEventProviderName; 
        private RuntimeAssembly m_asmImport;
        private RuntimeAssembly m_asmSrcItf; 
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
namespace System.Runtime.InteropServices.TCEAdapterGen {
 
    using System; 
    using System.Reflection;
    using System.Collections; 

    internal class EventItfInfo
    {
        public EventItfInfo(String strEventItfName, 
                            String strSrcItfName,
                            String strEventProviderName, 
                            RuntimeAssembly asmImport, 
                            RuntimeAssembly asmSrcItf)
        { 
            m_strEventItfName = strEventItfName;
            m_strSrcItfName = strSrcItfName;
            m_strEventProviderName = strEventProviderName;
            m_asmImport = asmImport; 
            m_asmSrcItf = asmSrcItf;
        } 
 
        public Type GetEventItfType()
        { 
            Type t = m_asmImport.GetType(m_strEventItfName, true, false);
            if (t != null && !t.IsVisible)
                t = null;
            return t; 
        }
 
        public Type GetSrcItfType() 
        {
            Type t = m_asmSrcItf.GetType(m_strSrcItfName, true, false); 
            if (t != null && !t.IsVisible)
                t = null;
            return t;
        } 

        public String GetEventProviderName() 
        { 
            return m_strEventProviderName;
        } 

        private String m_strEventItfName;
        private String m_strSrcItfName;
        private String m_strEventProviderName; 
        private RuntimeAssembly m_asmImport;
        private RuntimeAssembly m_asmSrcItf; 
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK