Type.GetTypeFromProgID 메서드

정의

지정된 프로그램 식별자(ProgID)와 연결된 형식을 가져옵니다.

오버로드

GetTypeFromProgID(String)

지정된 프로그램 식별자(ProgID)와 연결된 형식을 가져오며, Type로드하는 동안 오류가 발생하면 null을 반환합니다.

GetTypeFromProgID(String, Boolean)

지정된 프로그램 식별자(ProgID)와 연결된 형식을 가져오며, 형식을 로드하는 동안 오류가 발생할 경우 예외를 throw할지 여부를 지정합니다.

GetTypeFromProgID(String, String)

지정된 서버에서 지정된 프로그램 식별자(progID)와 연결된 형식을 가져오고, 형식을 로드하는 동안 오류가 발생하면 null을 반환합니다.

GetTypeFromProgID(String, String, Boolean)

지정된 서버에서 지정된 프로그램 식별자(progID)와 연결된 형식을 가져오며, 형식을 로드하는 동안 오류가 발생할 경우 예외를 throw할지 여부를 지정합니다.

GetTypeFromProgID(String)

Source:
Type.cs
Source:
Type.cs
Source:
Type.cs

지정된 프로그램 식별자(ProgID)와 연결된 형식을 가져오며, Type로드하는 동안 오류가 발생하면 null을 반환합니다.

public static Type? GetTypeFromProgID (string progID);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static Type? GetTypeFromProgID (string progID);
[System.Security.SecurityCritical]
public static Type GetTypeFromProgID (string progID);
public static Type GetTypeFromProgID (string progID);

매개 변수

progID
String

가져올 형식의 ProgID입니다.

반환

progID 레지스트리의 유효한 항목이고 형식이 연결된 경우 지정된 ProgID와 연결된 형식입니다. 그렇지 않으면 null.

특성

예외

progID null.

설명

이 메서드는 COM 지원을 위해 제공됩니다. ProgID는 네임스페이스 개념으로 대체되었기 때문에 Microsoft .NET Framework에서 사용되지 않습니다.

추가 정보

적용 대상

.NET 9 및 기타 버전
제품 버전
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

GetTypeFromProgID(String, Boolean)

Source:
Type.cs
Source:
Type.cs
Source:
Type.cs

지정된 프로그램 식별자(ProgID)와 연결된 형식을 가져오며, 형식을 로드하는 동안 오류가 발생할 경우 예외를 throw할지 여부를 지정합니다.

public static Type? GetTypeFromProgID (string progID, bool throwOnError);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static Type? GetTypeFromProgID (string progID, bool throwOnError);
[System.Security.SecurityCritical]
public static Type GetTypeFromProgID (string progID, bool throwOnError);
public static Type GetTypeFromProgID (string progID, bool throwOnError);

매개 변수

progID
String

가져올 형식의 ProgID입니다.

throwOnError
Boolean

발생하는 예외를 throw할 true.

-또는-

발생하는 모든 예외를 무시하도록 false.

반환

지정된 프로그램 식별자(ProgID)와 연결된 형식이며, progID 레지스트리의 유효한 항목이고 형식이 연결된 경우 그렇지 않으면 null.

특성

예외

progID null.

지정된 ProgID가 등록되지 않았습니다.

예제

다음 예제에서는 ProgID가 잘못된 경우 예외를 throw할지 여부를 지정하는 ProgID를 전달하여 형식을 검색합니다. 그런 다음 해당 예외 메시지와 함께 ProgID와 관련된 ClassID를 표시하는 예제입니다.

using System;
class MainApp
{
    public static void Main()
    {
        try
        {
            // Use the ProgID HKEY_CLASSES_ROOT\DirControl.DirList.1.
            string myString1 ="DIRECT.ddPalette.3";
            // Use a nonexistent ProgID WrongProgID.
            string myString2 ="WrongProgID";
            // Make a call to the method to get the type information of the given ProgID.
            Type myType1 =Type.GetTypeFromProgID(myString1,true);
            Console.WriteLine("GUID for ProgID DirControl.DirList.1 is {0}.", myType1.GUID);
            // Throw an exception because the ProgID is invalid and the throwOnError
            // parameter is set to True.
            Type myType2 =Type.GetTypeFromProgID(myString2,true);
        }
        catch(Exception e)
        {
            Console.WriteLine("An exception occurred.");
            Console.WriteLine("Source: {0}", e.Source);
            Console.WriteLine("Message: {0}", e.Message);
        }
    }
}

설명

이 메서드는 COM 지원을 위해 제공됩니다. 프로그램 ID는 네임스페이스 개념으로 대체되었기 때문에 Microsoft .NET Framework에서 사용되지 않습니다.

추가 정보

적용 대상

.NET 9 및 기타 버전
제품 버전
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

GetTypeFromProgID(String, String)

Source:
Type.cs
Source:
Type.cs
Source:
Type.cs

지정된 서버에서 지정된 프로그램 식별자(progID)와 연결된 형식을 가져오고, 형식을 로드하는 동안 오류가 발생하면 null을 반환합니다.

public static Type? GetTypeFromProgID (string progID, string? server);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static Type? GetTypeFromProgID (string progID, string? server);
[System.Security.SecurityCritical]
public static Type GetTypeFromProgID (string progID, string server);
public static Type GetTypeFromProgID (string progID, string server);

매개 변수

progID
String

가져올 형식의 progID입니다.

server
String

형식을 로드할 서버입니다. 서버 이름이 null경우 이 메서드는 자동으로 로컬 컴퓨터로 되돌려집니다.

반환

지정된 프로그램 식별자(progID)와 연결된 형식이며, progID 레지스트리의 유효한 항목이고 형식이 연결된 경우 그렇지 않으면 null.

특성

예외

progID null.

예제

다음 예제에서는 ProgID 및 서버 이름을 전달하여 형식을 검색합니다. 그런 다음 ProgID와 관련된 ClassID를 표시하거나 ProgID 또는 서버 이름이 잘못된 경우 예외를 throw합니다.

using System;
class MainApp
{
    public static void Main()
    {
        try
        {
            // Use the ProgID localhost\HKEY_CLASSES_ROOT\DirControl.DirList.1.
            string theProgramID ="DirControl.DirList.1";
            // Use the server name localhost.
            string theServer="localhost";
            // Make a call to the method to get the type information for the given ProgID.
            Type myType =Type.GetTypeFromProgID(theProgramID,theServer);
            if(myType==null)
            {
                throw new Exception("Invalid ProgID or Server.");
            }
            Console.WriteLine("GUID for ProgID DirControl.DirList.1 is {0}.", myType.GUID);
        }
        catch(Exception e)
        {
            Console.WriteLine("An exception occurred.");
            Console.WriteLine("Source: {0}" , e.Source);
            Console.WriteLine("Message: {0}" , e.Message);
        }		
    }
}

설명

이 메서드는 COM 지원을 위해 제공됩니다. 프로그램 ID는 네임스페이스 개념으로 대체되었기 때문에 Microsoft .NET Framework에서 사용되지 않습니다.

추가 정보

적용 대상

.NET 9 및 기타 버전
제품 버전
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

GetTypeFromProgID(String, String, Boolean)

Source:
Type.cs
Source:
Type.cs
Source:
Type.cs

지정된 서버에서 지정된 프로그램 식별자(progID)와 연결된 형식을 가져오며, 형식을 로드하는 동안 오류가 발생할 경우 예외를 throw할지 여부를 지정합니다.

public static Type? GetTypeFromProgID (string progID, string? server, bool throwOnError);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static Type? GetTypeFromProgID (string progID, string? server, bool throwOnError);
[System.Security.SecurityCritical]
public static Type GetTypeFromProgID (string progID, string server, bool throwOnError);
public static Type GetTypeFromProgID (string progID, string server, bool throwOnError);

매개 변수

progID
String

가져올 Type progID입니다.

server
String

형식을 로드할 서버입니다. 서버 이름이 null경우 이 메서드는 자동으로 로컬 컴퓨터로 되돌려집니다.

throwOnError
Boolean

발생하는 예외를 throw할 true.

-또는-

발생하는 모든 예외를 무시하도록 false.

반환

지정된 프로그램 식별자(progID)와 연결된 형식이며, progID 레지스트리의 유효한 항목이고 형식이 연결된 경우 그렇지 않으면 null.

특성

예외

progID null.

지정된 progID가 등록되지 않았습니다.

예제

다음 예제에서는 ProgID 및 서버 이름을 전달하여 형식을 검색합니다. 그런 다음 ProgID 또는 서버 이름이 잘못된 경우 예외를 throw할지 여부를 지정하여 ProgID와 관련된 ClassID를 표시합니다.


using System;
class MainApp
{
    public static void Main()
    {
        try
        {
            // Use server localhost.
            string theServer="localhost";
            // Use  ProgID HKEY_CLASSES_ROOT\DirControl.DirList.1.
            string myString1 ="DirControl.DirList.1";
            // Use a wrong ProgID WrongProgID.
            string myString2 ="WrongProgID";
            // Make a call to the method to get the type information for the given ProgID.
            Type myType1 =Type.GetTypeFromProgID(myString1,theServer,true);
            Console.WriteLine("GUID for ProgID DirControl.DirList.1 is {0}.", myType1.GUID);
            // Throw an exception because the ProgID is invalid and the throwOnError
            // parameter is set to True.
            Type myType2 =Type.GetTypeFromProgID(myString2, theServer, true);
        }
        catch(Exception e)
        {
            Console.WriteLine("An exception occurred. The ProgID is wrong.");
            Console.WriteLine("Source: {0}" , e.Source);
            Console.WriteLine("Message: {0}" , e.Message);
        }
    }
}

설명

이 메서드는 COM 지원을 위해 제공됩니다. 프로그램 ID는 네임스페이스 개념으로 대체되었기 때문에 Microsoft .NET Framework에서 사용되지 않습니다.

추가 정보

적용 대상

.NET 9 및 기타 버전
제품 버전
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1