﻿<?xml version="1.0" encoding="utf-8"?><Type Name="IRegistrationServices" FullName="System.Runtime.InteropServices.IRegistrationServices"><TypeSignature Maintainer="auto" Language="C#" Value="public interface IRegistrationServices" /><TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IRegistrationServices" /><AssemblyInfo><AssemblyName>mscorlib</AssemblyName><AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement><Interfaces /><Attributes><Attribute><AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName></Attribute><Attribute><AttributeName>System.Runtime.InteropServices.Guid("CCBD682C-73A5-4568-B8B0-C7007E11ABA2")</AttributeName></Attribute></Attributes><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Registration is needed when the objects within an assembly are being used by COM clients.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Provides a set of services for registering and unregistering managed assemblies for use from COM.</para></summary></Docs><Members><Member MemberName="GetManagedCategoryGuid"><MemberSignature Language="C#" Value="public Guid GetManagedCategoryGuid ();" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance valuetype System.Guid GetManagedCategoryGuid() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Guid</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Returns the GUID of the COM category that contains the managed classes.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The GUID of the COM category that contains the managed classes.</para></returns></Docs></Member><Member MemberName="GetProgIdForType"><MemberSignature Language="C#" Value="public string GetProgIdForType (Type type);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string GetProgIdForType(class System.Type type) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Type" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the COM ProgID for a specified type.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The ProgID for the specified type.</para></returns><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />The type whose ProgID is being requested. </param></Docs></Member><Member MemberName="GetRegistrableTypesInAssembly"><MemberSignature Language="C#" Value="public Type[] GetRegistrableTypesInAssembly (System.Reflection.Assembly assembly);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Type[] GetRegistrableTypesInAssembly(class System.Reflection.Assembly assembly) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Type[]</ReturnType></ReturnValue><Parameters><Parameter Name="assembly" Type="System.Reflection.Assembly" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves a list of classes in an assembly that would be registered by a call to <see cref="M:System.Runtime.InteropServices.IRegistrationServices.RegisterAssembly(System.Reflection.Assembly,System.Runtime.InteropServices.AssemblyRegistrationFlags)" />.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Type" /> array containing a list of classes in <paramref name="assembly" />.</para></returns><param name="assembly"><attribution license="cc4" from="Microsoft" modified="false" />The assembly to search for classes. </param></Docs></Member><Member MemberName="RegisterAssembly"><MemberSignature Language="C#" Value="public bool RegisterAssembly (System.Reflection.Assembly assembly, System.Runtime.InteropServices.AssemblyRegistrationFlags flags);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool RegisterAssembly(class System.Reflection.Assembly assembly, valuetype System.Runtime.InteropServices.AssemblyRegistrationFlags flags) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="assembly" Type="System.Reflection.Assembly" /><Parameter Name="flags" Type="System.Runtime.InteropServices.AssemblyRegistrationFlags" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>RegisterAssembly adds the appropriate registry entries for the types in the specified assembly. This method also calls any registration functions found in the assembly.</para><para>Use <see cref="M:System.Reflection.Assembly.Load(System.String)" /> to get an assembly.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Registers the classes in a managed assembly to enable creation from COM.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if <paramref name="assembly" /> contains types that were successfully registered; otherwise false if the assembly contains no eligible types.</para></returns><param name="assembly"><attribution license="cc4" from="Microsoft" modified="false" />The assembly to be registered. </param><param name="flags"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Runtime.InteropServices.AssemblyRegistrationFlags" /> value indicating any special settings needed when registering <paramref name="assembly" />. </param></Docs></Member><Member MemberName="RegisterTypeForComClients"><MemberSignature Language="C#" Value="public void RegisterTypeForComClients (Type type, ref Guid g);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void RegisterTypeForComClients(class System.Type type, valuetype System.Guid g) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Type" /><Parameter Name="g" Type="System.Guid&amp;" RefType="ref" /></Parameters><Docs><param name="type">To be added: an object of type 'Type'</param><param name="g">To be added: an object of type 'Guid&amp;'</param><summary>To be added</summary><remarks>To be added</remarks></Docs></Member><Member MemberName="TypeRepresentsComType"><MemberSignature Language="C#" Value="public bool TypeRepresentsComType (Type type);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TypeRepresentsComType(class System.Type type) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Type" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines whether the specified type is a COM type.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the specified type is a COM type; otherwise false.</para></returns><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />The type to determine if it is a COM type. </param></Docs></Member><Member MemberName="TypeRequiresRegistration"><MemberSignature Language="C#" Value="public bool TypeRequiresRegistration (Type type);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TypeRequiresRegistration(class System.Type type) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Type" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines whether the specified type requires registration.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the type must be registered for use from COM; otherwise false.</para></returns><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />The type to check for COM registration requirements. </param></Docs></Member><Member MemberName="UnregisterAssembly"><MemberSignature Language="C#" Value="public bool UnregisterAssembly (System.Reflection.Assembly assembly);" /><MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool UnregisterAssembly(class System.Reflection.Assembly assembly) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="assembly" Type="System.Reflection.Assembly" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>UnregisterAssembly removes the registry entries for the types in the specified assembly previously added by <see cref="M:System.Runtime.InteropServices.IRegistrationServices.RegisterAssembly(System.Reflection.Assembly,System.Runtime.InteropServices.AssemblyRegistrationFlags)" />. This method also calls any unregistration functions found in the assembly.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Unregisters the classes in a managed assembly.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if <paramref name="assembly" /> contains types that were successfully unregistered; otherwise false if the assembly contains no eligible types.</para></returns><param name="assembly"><attribution license="cc4" from="Microsoft" modified="false" />The assembly to be unregistered. </param></Docs></Member></Members></Type>