System.cs
上传用户:jnxxjx
上传日期:2015-03-08
资源大小:3388k
文件大小:815k
源码类别:

VC书籍

开发平台:

C/C++

  1.      Class System.ComponentModel.Design.IDesigner CreateDesigner( Class System.ComponentModel.IComponent component,  Class System.Type designerBaseType);
  2.      Class System.ComponentModel.EventDescriptor CreateEvent( Class System.Type componentType,  String name,  Class System.Type type,  SZArray Class System.Attribute attributes);
  3.      Class System.ComponentModel.EventDescriptor CreateEvent( Class System.Type componentType,  Class System.ComponentModel.EventDescriptor oldEventDescriptor,  SZArray Class System.Attribute attributes);
  4.      Class System.ComponentModel.PropertyDescriptor CreateProperty( Class System.Type componentType,  String name,  Class System.Type type,  SZArray Class System.Attribute attributes);
  5.      Class System.ComponentModel.PropertyDescriptor CreateProperty( Class System.Type componentType,  Class System.ComponentModel.PropertyDescriptor oldPropertyDescriptor,  SZArray Class System.Attribute attributes);
  6.      Class System.ComponentModel.AttributeCollection GetAttributes( Class System.Type componentType);
  7.      Class System.ComponentModel.AttributeCollection GetAttributes( Object component);
  8.      Class System.ComponentModel.AttributeCollection GetAttributes( Object component,  Boolean noCustomTypeDesc);
  9.      String GetClassName( Object component);
  10.      String GetClassName( Object component,  Boolean noCustomTypeDesc);
  11.      String GetComponentName( Object component);
  12.      String GetComponentName( Object component,  Boolean noCustomTypeDesc);
  13.      Class System.ComponentModel.TypeConverter GetConverter( Object component);
  14.      Class System.ComponentModel.TypeConverter GetConverter( Object component,  Boolean noCustomTypeDesc);
  15.      Class System.ComponentModel.TypeConverter GetConverter( Class System.Type type);
  16.      SZArray Object GetCustomAttributes( Class System.Type type);
  17.      SZArray Object GetCustomAttributes( Class System.Reflection.MemberInfo info);
  18.      Class System.ComponentModel.EventDescriptor GetDefaultEvent( Class System.Type componentType);
  19.      Class System.ComponentModel.EventDescriptor GetDefaultEvent( Object component);
  20.      Class System.ComponentModel.EventDescriptor GetDefaultEvent( Object component,  Boolean noCustomTypeDesc);
  21.      Class System.ComponentModel.PropertyDescriptor GetDefaultProperty( Class System.Type componentType);
  22.      Class System.ComponentModel.PropertyDescriptor GetDefaultProperty( Object component);
  23.      Class System.ComponentModel.PropertyDescriptor GetDefaultProperty( Object component,  Boolean noCustomTypeDesc);
  24.      Object GetEditor( Object component,  Class System.Type editorBaseType);
  25.      Object GetEditor( Object component,  Class System.Type editorBaseType,  Boolean noCustomTypeDesc);
  26.      Object GetEditor( Class System.Type type,  Class System.Type editorBaseType);
  27.      Class System.Collections.Hashtable GetEditorTable( Class System.Type editorBaseType);
  28.      Class System.ComponentModel.EventDescriptorCollection GetEvents( Class System.Type componentType);
  29.      Class System.ComponentModel.EventDescriptorCollection GetEvents( Object component);
  30.      Class System.ComponentModel.EventDescriptorCollection GetEvents( Object component,  Boolean noCustomTypeDesc);
  31.      Class System.ComponentModel.EventDescriptorCollection GetEvents( Class System.Type componentType,  SZArray Class System.Attribute attributes);
  32.      Class System.ComponentModel.EventDescriptorCollection GetEvents( Object component,  SZArray Class System.Attribute attributes);
  33.      Class System.ComponentModel.EventDescriptorCollection GetEvents( Object component,  SZArray Class System.Attribute attributes,  Boolean noCustomTypeDesc);
  34.      Class System.ComponentModel.PropertyDescriptorCollection GetProperties( Class System.Type componentType);
  35.      Class System.ComponentModel.PropertyDescriptorCollection GetProperties( Object component);
  36.      Class System.ComponentModel.PropertyDescriptorCollection GetProperties( Object component,  Boolean noCustomTypeDesc);
  37.      Class System.ComponentModel.PropertyDescriptorCollection GetProperties( Class System.Type componentType,  SZArray Class System.Attribute attributes);
  38.      Class System.ComponentModel.PropertyDescriptorCollection GetProperties( Object component,  SZArray Class System.Attribute attributes);
  39.      Class System.ComponentModel.PropertyDescriptorCollection GetProperties( Object component,  SZArray Class System.Attribute attributes,  Boolean noCustomTypeDesc);
  40.      Void Refresh( Object component);
  41.      Void Refresh( Class System.Type type);
  42.      Void Refresh( Class System.Reflection.Module module);
  43.      Void Refresh( Class System.Reflection.Assembly assembly);
  44.      Void SortDescriptorArray( Class System.Collections.IList infos);
  45.      Void System.ComponentModel.TypeDescriptor();
  46.     property ComNativeDescriptorHandler { get(){} set(){} };
  47.     event Refreshed;
  48.     }
  49. class ComponentEntry : System.Object
  50.     {
  51.      Class System.Type componentType;
  52.      Class System.ComponentModel.PropertyDescriptorCollection properties;
  53.      Class System.ComponentModel.EventDescriptorCollection events;
  54.      Class System.ComponentModel.AttributeCollection attributes;
  55.      Class System.Collections.IList extenders;
  56.      Class System.Collections.Hashtable wrappedExtenderTable;
  57.      Class System.ComponentModel.TypeConverter converter;
  58.      SZArray Object editors;
  59.      SZArray Class System.Type editorTypes;
  60.      I4 editorCount;
  61.      I4 collisionIndex;
  62.      SZArray Class System.Type typeConstructor;
  63.      Class System.Collections.Hashtable intrinsicTypeConverters;
  64.      Object intrinsicEnumKey;
  65.      Object intrinsicReferenceKey;
  66.      Void ComponentEntry( Class System.Type componentType);
  67.      Class System.Collections.Hashtable get_IntrinsicTypeConverters();
  68.      Object CreateInstance( Class System.Type type);
  69.      Void Dispose( Object component);
  70.      Void FilterMembers( Class System.Type infoType,  Class System.Collections.IList infos,  SZArray Class System.Attribute attributes);
  71.      Class System.ComponentModel.AttributeCollection GetAttributes( Object component);
  72.      Class System.ComponentModel.Design.IDesigner GetComponentDesigner( Object component);
  73.      Class System.Type GetComponentType();
  74.      Class System.ComponentModel.TypeConverter GetConverter();
  75.      Class System.ComponentModel.TypeConverter GetConverter( Object component);
  76.      Class System.ComponentModel.EventDescriptor GetDefaultEvent( Object component);
  77.      Class System.ComponentModel.PropertyDescriptor GetDefaultProperty( Object component);
  78.      Object GetEditor( Class System.Type editorBaseType);
  79.      Object GetEditor( Object component,  Class System.Type editorBaseType);
  80.      Class System.ComponentModel.EventDescriptorCollection GetEvents( Object component,  SZArray Class System.Attribute attributes);
  81.      Class System.ComponentModel.EventDescriptorCollection GetEvents( Object component,  SZArray Class System.Attribute attributes,  Boolean noFilter);
  82.      Class System.ComponentModel.EventDescriptorCollection FilterEvents( Object component,  SZArray Class System.Attribute attributes,  Class System.ComponentModel.EventDescriptorCollection events);
  83.      Class System.Collections.ICollection GetExtendedProperties( Class System.ComponentModel.IComponent comp,  SZArray Class System.ComponentModel.IExtenderProvider providers);
  84.      String GetExtenderCollisionSuffix( Class System.ComponentModel.PropertyDescriptor prop);
  85.      SZArray Class System.ComponentModel.IExtenderProvider GetExtenderProviders( Class System.ComponentModel.ISite site);
  86.      Class System.Collections.IList GetExtenders();
  87.      Class System.ComponentModel.PropertyDescriptorCollection GetProperties( Object component,  SZArray Class System.Attribute attributes);
  88.      Class System.ComponentModel.PropertyDescriptorCollection GetProperties( Object component,  SZArray Class System.Attribute attributes,  Boolean noFilter);
  89.      Class System.ComponentModel.PropertyDescriptorCollection FilterProperties( Object component,  SZArray Class System.Attribute attributes,  Class System.ComponentModel.PropertyDescriptorCollection properties);
  90.      Object GetService( Object component,  Class System.Type type);
  91.      Class System.Type GetTypeFromName( String typeName);
  92.      Class System.Collections.IList GetWrappedExtenders( Class System.ComponentModel.IExtenderProvider provider);
  93.      Object SearchIntrinsicTable( Class System.Collections.Hashtable table);
  94.      Boolean ShouldHideMember( Class System.ComponentModel.MemberDescriptor info,  Class System.Attribute attribute);
  95.      Void ComponentEntry();
  96.     property IntrinsicTypeConverters { get(){} set(){} };
  97.     }
  98. class MemberList : System.Object
  99.     {
  100.      Class System.Collections.Hashtable memberHash;
  101.      Class ComponentEntry owner;
  102.      Void MemberList( Class ComponentEntry owner);
  103.      Void AddMember( Object member);
  104.      SZArray Class System.Attribute GetAttributes();
  105.      SZArray Class System.ComponentModel.EventDescriptor GetEvents();
  106.      Class System.Collections.IList GetExtenders();
  107.      SZArray Class System.ComponentModel.PropertyDescriptor GetProperties();
  108.      Void ReflectGetCustomAttributes( Class System.Type classToReflect,  Class System.Type metadataType);
  109.      Void ReflectGetEvents( Class System.Type classToReflect);
  110.      Void ReflectGetExtenders( Class System.Type classToReflect);
  111.      Void ReflectGetProperties( Class System.Type classToReflect);
  112.     }
  113. class EventHashHolder : System.Object
  114.     {
  115.      Class System.Reflection.EventInfo RealEvent;
  116.      String Name;
  117.      Class System.Type ReflectedType;
  118.      Class System.Reflection.MethodInfo AddMethod;
  119.      Class System.Reflection.MethodInfo RemoveMethod;
  120.      Void EventHashHolder( Class System.Reflection.EventInfo evt);
  121.      Void EventHashHolder( String name,  Class System.Type reflectedType,  Class System.Reflection.MethodInfo addMethod,  Class System.Reflection.MethodInfo removeMethod);
  122.     }
  123. class PropertyHashHolder : System.Object
  124.     {
  125.      String Name;
  126.      Class System.Type PropertyType;
  127.      Class System.Reflection.MethodInfo GetMethod;
  128.      Class System.Reflection.MethodInfo SetMethod;
  129.      Class System.Reflection.PropertyInfo PropertyInfo;
  130.      Void PropertyHashHolder( Class System.Reflection.PropertyInfo prop);
  131.     }
  132. class PropertyStash : System.Object
  133.     {
  134.      I8 extenderHash;
  135.      Class System.Collections.ArrayList Properties;
  136.      Class System.ComponentModel.PropertyDescriptorCollection FilteredProperties;
  137.      SZArray Class System.Attribute Attributes;
  138.      Void PropertyStash( Class System.Collections.ArrayList props,  SZArray Class System.ComponentModel.IExtenderProvider providers);
  139.      Boolean AttributesMatch( SZArray Class System.Attribute attributes);
  140.      Boolean ExtendersMatch( SZArray Class System.ComponentModel.IExtenderProvider providers);
  141.      I8 HashExtenders( SZArray Class System.ComponentModel.IExtenderProvider providers);
  142.     }
  143. class MemberDescriptorComparer : System.Object
  144.     {
  145.      Class MemberDescriptorComparer Instance;
  146.      I4 Compare( Object left,  Object right);
  147.      Void MemberDescriptorComparer();
  148.      Void MemberDescriptorComparer();
  149.     }
  150. class System.Diagnostics.AssertWrapper : System.Object
  151.     {
  152.      Void ShowAssert( String stackTrace,  Class System.Diagnostics.StackFrame frame,  String message,  String detailMessage);
  153.      Void DebuggerLaunchFailedMessageBox();
  154.      Void ShowMessageBoxAssert( String stackTrace,  String message,  String detailMessage);
  155.      String TruncateMessageToFitScreen( String message);
  156.      Void System.Diagnostics.AssertWrapper();
  157.     }
  158. class System.Diagnostics.Switch : System.Object
  159.     {
  160.      I4 initCount;
  161.      Class System.Collections.Hashtable switchSettings;
  162.      String description;
  163.      String displayName;
  164.      I4 switchSetting;
  165.      Void System.Diagnostics.Switch( String displayName,  String description);
  166.      String get_DisplayName();
  167.      String get_Description();
  168.      I4 get_SwitchSetting();
  169.      Void set_SwitchSetting( I4 value);
  170.      Boolean Initialize();
  171.      Void OnSwitchSettingChanged();
  172.     property DisplayName { get(){} set(){} };
  173.     property Description { get(){} set(){} };
  174.     property SwitchSetting { get(){} set(){} };
  175.     }
  176. class System.Diagnostics.BooleanSwitch : System.Diagnostics.Switch
  177.     {
  178.      Void System.Diagnostics.BooleanSwitch( String displayName,  String description);
  179.      Boolean get_Enabled();
  180.      Void set_Enabled( Boolean value);
  181.     property Enabled { get(){} set(){} };
  182.     }
  183. class System.Diagnostics.Debug : System.Object
  184.     {
  185.      Void System.Diagnostics.Debug();
  186.      Class System.Diagnostics.TraceListenerCollection get_Listeners();
  187.      Boolean get_AutoFlush();
  188.      Void set_AutoFlush( Boolean value);
  189.      I4 get_IndentLevel();
  190.      Void set_IndentLevel( I4 value);
  191.      I4 get_IndentSize();
  192.      Void set_IndentSize( I4 value);
  193.      Void Flush();
  194.      Void Close();
  195.      Void Assert( Boolean condition);
  196.      Void Assert( Boolean condition,  String message);
  197.      Void Assert( Boolean condition,  String message,  String detailMessage);
  198.      Void Fail( String message);
  199.      Void Fail( String message,  String detailMessage);
  200.      Void Write( String message);
  201.      Void Write( Object value);
  202.      Void Write( String message,  String category);
  203.      Void Write( Object value,  String category);
  204.      Void WriteLine( String message);
  205.      Void WriteLine( Object value);
  206.      Void WriteLine( String message,  String category);
  207.      Void WriteLine( Object value,  String category);
  208.      Void WriteIf( Boolean condition,  String message);
  209.      Void WriteIf( Boolean condition,  Object value);
  210.      Void WriteIf( Boolean condition,  String message,  String category);
  211.      Void WriteIf( Boolean condition,  Object value,  String category);
  212.      Void WriteLineIf( Boolean condition,  String message);
  213.      Void WriteLineIf( Boolean condition,  Object value);
  214.      Void WriteLineIf( Boolean condition,  String message,  String category);
  215.      Void WriteLineIf( Boolean condition,  Object value,  String category);
  216.      Void Indent();
  217.      Void Unindent();
  218.     property Listeners { get(){} set(){} };
  219.     property AutoFlush { get(){} set(){} };
  220.     property IndentLevel { get(){} set(){} };
  221.     property IndentSize { get(){} set(){} };
  222.     }
  223. class System.Diagnostics.TraceListener : System.MarshalByRefObject
  224.     {
  225.      I4 indentLevel;
  226.      I4 indentSize;
  227.      Boolean needIndent;
  228.      String listenerName;
  229.      Void System.Diagnostics.TraceListener();
  230.      Void System.Diagnostics.TraceListener( String name);
  231.      String get_Name();
  232.      Void set_Name( String value);
  233.      Void Dispose();
  234.      Void Dispose( Boolean disposing);
  235.      Void Close();
  236.      Void Flush();
  237.      I4 get_IndentLevel();
  238.      Void set_IndentLevel( I4 value);
  239.      I4 get_IndentSize();
  240.      Void set_IndentSize( I4 value);
  241.      Boolean get_NeedIndent();
  242.      Void set_NeedIndent( Boolean value);
  243.      Void Fail( String message);
  244.      Void Fail( String message,  String detailMessage);
  245.      Void Write( String message);
  246.      Void Write( Object o);
  247.      Void Write( String message,  String category);
  248.      Void Write( Object o,  String category);
  249.      Void WriteIndent();
  250.      Void WriteLine( String message);
  251.      Void WriteLine( Object o);
  252.      Void WriteLine( String message,  String category);
  253.      Void WriteLine( Object o,  String category);
  254.     property Name { get(){} set(){} };
  255.     property IndentLevel { get(){} set(){} };
  256.     property IndentSize { get(){} set(){} };
  257.     property NeedIndent { get(){} set(){} };
  258.     }
  259. class System.Diagnostics.DefaultTraceListener : System.Diagnostics.TraceListener
  260.     {
  261.      I4 internalWriteSize;
  262.      Boolean assertUIEnabled;
  263.      String logFileName;
  264.      Boolean settingsInitialized;
  265.      Void System.Diagnostics.DefaultTraceListener();
  266.      Boolean get_AssertUiEnabled();
  267.      Void set_AssertUiEnabled( Boolean value);
  268.      String get_LogFileName();
  269.      Void set_LogFileName( String value);
  270.      Void Fail( String message);
  271.      Void Fail( String message,  String detailMessage);
  272.      Void InitializeSettings();
  273.      Void WriteAssert( String stackTrace,  String message,  String detailMessage);
  274.      Void WriteToLogFile( String message,  Boolean useWriteLine);
  275.      String StackTraceToString( Class System.Diagnostics.StackTrace trace,  I4 startFrameIndex,  I4 endFrameIndex);
  276.      Void Write( String message);
  277.      Void Write( String message,  Boolean useLogFile);
  278.      Void internalWrite( String message);
  279.      Void WriteLine( String message);
  280.      Void WriteLine( String message,  Boolean useLogFile);
  281.      Boolean get_UiPermission();
  282.      Boolean get_UserInteractive();
  283.     property AssertUiEnabled { get(){} set(){} };
  284.     property LogFileName { get(){} set(){} };
  285.     property UiPermission { get(){} set(){} };
  286.     property UserInteractive { get(){} set(){} };
  287.     }
  288. class System.Diagnostics.InitState : System.Enum
  289.     {
  290.      I4 value__;
  291.      ValueClass System.Diagnostics.InitState NotInitialized;
  292.      ValueClass System.Diagnostics.InitState Initializing;
  293.      ValueClass System.Diagnostics.InitState Initialized;
  294.     }
  295. class System.Diagnostics.DiagnosticsConfiguration : System.Object
  296.     {
  297.      I4 DefaultCountersFileMappingSize;
  298.      I4 MaxCountersFileMappingSize;
  299.      I4 MinCountersFileMappingSize;
  300.      Class System.Collections.Hashtable configTable;
  301.      ValueClass System.Diagnostics.InitState initState;
  302.      Class System.Collections.IDictionary get_SwitchSettings();
  303.      Boolean get_AssertUIEnabled();
  304.      String get_LogFileName();
  305.      Boolean get_AutoFlush();
  306.      I4 get_IndentSize();
  307.      I4 get_PerfomanceCountersFileMappingSize();
  308.      Class System.Collections.Hashtable GetConfigTable();
  309.      Boolean IsInitializing();
  310.      Boolean CanInitialize();
  311.      Void Initialize();
  312.      Void System.Diagnostics.DiagnosticsConfiguration();
  313.      Void System.Diagnostics.DiagnosticsConfiguration();
  314.     property SwitchSettings { get(){} set(){} };
  315.     property AssertUIEnabled { get(){} set(){} };
  316.     property LogFileName { get(){} set(){} };
  317.     property AutoFlush { get(){} set(){} };
  318.     property IndentSize { get(){} set(){} };
  319.     property PerfomanceCountersFileMappingSize { get(){} set(){} };
  320.     }
  321. class System.Diagnostics.TextWriterTraceListener : System.Diagnostics.TraceListener
  322.     {
  323.      Class System.IO.TextWriter writer;
  324.      Void System.Diagnostics.TextWriterTraceListener();
  325.      Void System.Diagnostics.TextWriterTraceListener( Class System.IO.Stream stream);
  326.      Void System.Diagnostics.TextWriterTraceListener( Class System.IO.Stream stream,  String name);
  327.      Void System.Diagnostics.TextWriterTraceListener( Class System.IO.TextWriter writer);
  328.      Void System.Diagnostics.TextWriterTraceListener( Class System.IO.TextWriter writer,  String name);
  329.      Void System.Diagnostics.TextWriterTraceListener( String fileName);
  330.      Void System.Diagnostics.TextWriterTraceListener( String fileName,  String name);
  331.      Class System.IO.TextWriter get_Writer();
  332.      Void set_Writer( Class System.IO.TextWriter value);
  333.      Void Close();
  334.      Void Dispose( Boolean disposing);
  335.      Void Flush();
  336.      Void Write( String message);
  337.      Void WriteLine( String message);
  338.     property Writer { get(){} set(){} };
  339.     }
  340. class System.Diagnostics.Trace : System.Object
  341.     {
  342.      Void System.Diagnostics.Trace();
  343.      Class System.Diagnostics.TraceListenerCollection get_Listeners();
  344.      Boolean get_AutoFlush();
  345.      Void set_AutoFlush( Boolean value);
  346.      I4 get_IndentLevel();
  347.      Void set_IndentLevel( I4 value);
  348.      I4 get_IndentSize();
  349.      Void set_IndentSize( I4 value);
  350.      Void Flush();
  351.      Void Close();
  352.      Void Assert( Boolean condition);
  353.      Void Assert( Boolean condition,  String message);
  354.      Void Assert( Boolean condition,  String message,  String detailMessage);
  355.      Void Fail( String message);
  356.      Void Fail( String message,  String detailMessage);
  357.      Void Write( String message);
  358.      Void Write( Object value);
  359.      Void Write( String message,  String category);
  360.      Void Write( Object value,  String category);
  361.      Void WriteLine( String message);
  362.      Void WriteLine( Object value);
  363.      Void WriteLine( String message,  String category);
  364.      Void WriteLine( Object value,  String category);
  365.      Void WriteIf( Boolean condition,  String message);
  366.      Void WriteIf( Boolean condition,  Object value);
  367.      Void WriteIf( Boolean condition,  String message,  String category);
  368.      Void WriteIf( Boolean condition,  Object value,  String category);
  369.      Void WriteLineIf( Boolean condition,  String message);
  370.      Void WriteLineIf( Boolean condition,  Object value);
  371.      Void WriteLineIf( Boolean condition,  String message,  String category);
  372.      Void WriteLineIf( Boolean condition,  Object value,  String category);
  373.      Void Indent();
  374.      Void Unindent();
  375.     property Listeners { get(){} set(){} };
  376.     property AutoFlush { get(){} set(){} };
  377.     property IndentLevel { get(){} set(){} };
  378.     property IndentSize { get(){} set(){} };
  379.     }
  380. class System.Diagnostics.TraceInternal : System.Object
  381.     {
  382.      Class System.Diagnostics.TraceListenerCollection listeners;
  383.      Boolean autoFlush;
  384.      I4 indentLevel;
  385.      I4 indentSize;
  386.      Boolean settingsInitialized;
  387.      Object critSec;
  388.      Class System.Diagnostics.TraceListenerCollection get_Listeners();
  389.      Boolean get_AutoFlush();
  390.      Void set_AutoFlush( Boolean value);
  391.      I4 get_IndentLevel();
  392.      Void set_IndentLevel( I4 value);
  393.      I4 get_IndentSize();
  394.      Void set_IndentSize( I4 value);
  395.      Void SetIndentSize( I4 value);
  396.      Void Indent();
  397.      Void Unindent();
  398.      Void Flush();
  399.      Void Close();
  400.      Void Assert( Boolean condition);
  401.      Void Assert( Boolean condition,  String message);
  402.      Void Assert( Boolean condition,  String message,  String detailMessage);
  403.      Void Fail( String message);
  404.      Void Fail( String message,  String detailMessage);
  405.      Void InitializeSettings();
  406.      Void Write( String message);
  407.      Void Write( Object value);
  408.      Void Write( String message,  String category);
  409.      Void Write( Object value,  String category);
  410.      Void WriteLine( String message);
  411.      Void WriteLine( Object value);
  412.      Void WriteLine( String message,  String category);
  413.      Void WriteLine( Object value,  String category);
  414.      Void WriteIf( Boolean condition,  String message);
  415.      Void WriteIf( Boolean condition,  Object value);
  416.      Void WriteIf( Boolean condition,  String message,  String category);
  417.      Void WriteIf( Boolean condition,  Object value,  String category);
  418.      Void WriteLineIf( Boolean condition,  String message);
  419.      Void WriteLineIf( Boolean condition,  Object value);
  420.      Void WriteLineIf( Boolean condition,  String message,  String category);
  421.      Void WriteLineIf( Boolean condition,  Object value,  String category);
  422.      Void System.Diagnostics.TraceInternal();
  423.      Void System.Diagnostics.TraceInternal();
  424.     property Listeners { get(){} set(){} };
  425.     property AutoFlush { get(){} set(){} };
  426.     property IndentLevel { get(){} set(){} };
  427.     property IndentSize { get(){} set(){} };
  428.     }
  429. class System.Diagnostics.TraceLevel : System.Enum
  430.     {
  431.      I4 value__;
  432.      ValueClass System.Diagnostics.TraceLevel Off;
  433.      ValueClass System.Diagnostics.TraceLevel Error;
  434.      ValueClass System.Diagnostics.TraceLevel Warning;
  435.      ValueClass System.Diagnostics.TraceLevel Info;
  436.      ValueClass System.Diagnostics.TraceLevel Verbose;
  437.     }
  438. class System.Diagnostics.TraceListenerCollection : System.Object
  439.     {
  440.      Class System.Collections.ArrayList list;
  441.      Void System.Diagnostics.TraceListenerCollection();
  442.      Class System.Diagnostics.TraceListener get_Item( I4 i);
  443.      Void set_Item( I4 i,  Class System.Diagnostics.TraceListener value);
  444.      Class System.Diagnostics.TraceListener get_Item( String name);
  445.      I4 get_Count();
  446.      I4 Add( Class System.Diagnostics.TraceListener listener);
  447.      Void AddRange( SZArray Class System.Diagnostics.TraceListener value);
  448.      Void AddRange( Class System.Diagnostics.TraceListenerCollection value);
  449.      Void Clear();
  450.      Boolean Contains( Class System.Diagnostics.TraceListener listener);
  451.      Void CopyTo( SZArray Class System.Diagnostics.TraceListener listeners,  I4 index);
  452.      Class System.Collections.IEnumerator GetEnumerator();
  453.      Void InitializeListener( Class System.Diagnostics.TraceListener listener);
  454.      I4 IndexOf( Class System.Diagnostics.TraceListener listener);
  455.      Void Insert( I4 index,  Class System.Diagnostics.TraceListener listener);
  456.      Void Remove( Class System.Diagnostics.TraceListener listener);
  457.      Void Remove( String name);
  458.      Void RemoveAt( I4 index);
  459.      Object System.Collections.IList.get_Item( I4 index);
  460.      Void System.Collections.IList.set_Item( I4 index,  Object value);
  461.      Boolean System.Collections.IList.get_IsReadOnly();
  462.      Boolean System.Collections.IList.get_IsFixedSize();
  463.      I4 System.Collections.IList.Add( Object value);
  464.      Boolean System.Collections.IList.Contains( Object value);
  465.      I4 System.Collections.IList.IndexOf( Object value);
  466.      Void System.Collections.IList.Insert( I4 index,  Object value);
  467.      Void System.Collections.IList.Remove( Object value);
  468.      Object System.Collections.ICollection.get_SyncRoot();
  469.      Boolean System.Collections.ICollection.get_IsSynchronized();
  470.      Void System.Collections.ICollection.CopyTo( Class System.Array array,  I4 index);
  471.     property Item { get(){} set(){} };
  472.     property Item { get(){} set(){} };
  473.     property Count { get(){} set(){} };
  474.     }
  475. class System.Diagnostics.TraceSwitch : System.Diagnostics.Switch
  476.     {
  477.      Void System.Diagnostics.TraceSwitch( String displayName,  String description);
  478.      ValueClass System.Diagnostics.TraceLevel get_Level();
  479.      Void set_Level( ValueClass System.Diagnostics.TraceLevel value);
  480.      Boolean get_TraceError();
  481.      Boolean get_TraceWarning();
  482.      Boolean get_TraceInfo();
  483.      Boolean get_TraceVerbose();
  484.      Void OnSwitchSettingChanged();
  485.     property Level { get(){} set(){} };
  486.     property TraceError { get(){} set(){} };
  487.     property TraceWarning { get(){} set(){} };
  488.     property TraceInfo { get(){} set(){} };
  489.     property TraceVerbose { get(){} set(){} };
  490.     }
  491. class System.Threading.ThreadExceptionEventArgs : System.EventArgs
  492.     {
  493.      Class System.Exception exception;
  494.      Void System.Threading.ThreadExceptionEventArgs( Class System.Exception t);
  495.      Class System.Exception get_Exception();
  496.     property Exception { get(){} set(){} };
  497.     }
  498. class System.Threading.ThreadExceptionEventHandler : System.MulticastDelegate
  499.     {
  500.      Void System.Threading.ThreadExceptionEventHandler( Object object,  I method);
  501.      Void Invoke( Object sender,  Class System.Threading.ThreadExceptionEventArgs e);
  502.      Class System.IAsyncResult BeginInvoke( Object sender,  Class System.Threading.ThreadExceptionEventArgs e,  Class System.AsyncCallback callback,  Object object);
  503.      Void EndInvoke( Class System.IAsyncResult result);
  504.     }
  505. class System.CodeDom.Compiler.GeneratorSupport : System.Enum
  506.     {
  507.      I4 value__;
  508.      ValueClass System.CodeDom.Compiler.GeneratorSupport ArraysOfArrays;
  509.      ValueClass System.CodeDom.Compiler.GeneratorSupport EntryPointMethod;
  510.      ValueClass System.CodeDom.Compiler.GeneratorSupport GotoStatements;
  511.      ValueClass System.CodeDom.Compiler.GeneratorSupport MultidimensionalArrays;
  512.      ValueClass System.CodeDom.Compiler.GeneratorSupport StaticConstructors;
  513.      ValueClass System.CodeDom.Compiler.GeneratorSupport TryCatchStatements;
  514.      ValueClass System.CodeDom.Compiler.GeneratorSupport ReturnTypeAttributes;
  515.      ValueClass System.CodeDom.Compiler.GeneratorSupport DeclareValueTypes;
  516.      ValueClass System.CodeDom.Compiler.GeneratorSupport DeclareEnums;
  517.      ValueClass System.CodeDom.Compiler.GeneratorSupport DeclareDelegates;
  518.      ValueClass System.CodeDom.Compiler.GeneratorSupport DeclareInterfaces;
  519.      ValueClass System.CodeDom.Compiler.GeneratorSupport DeclareEvents;
  520.      ValueClass System.CodeDom.Compiler.GeneratorSupport AssemblyAttributes;
  521.      ValueClass System.CodeDom.Compiler.GeneratorSupport ParameterAttributes;
  522.      ValueClass System.CodeDom.Compiler.GeneratorSupport ReferenceParameters;
  523.      ValueClass System.CodeDom.Compiler.GeneratorSupport ChainedConstructorArguments;
  524.      ValueClass System.CodeDom.Compiler.GeneratorSupport NestedTypes;
  525.      ValueClass System.CodeDom.Compiler.GeneratorSupport MultipleInterfaceMembers;
  526.      ValueClass System.CodeDom.Compiler.GeneratorSupport PublicStaticMembers;
  527.      ValueClass System.CodeDom.Compiler.GeneratorSupport ComplexExpressions;
  528.      ValueClass System.CodeDom.Compiler.GeneratorSupport Win32Resources;
  529.     }
  530. interface System.CodeDom.Compiler.ICodeCompiler : 
  531.     {
  532.      Class System.CodeDom.Compiler.CompilerResults CompileAssemblyFromDom( Class System.CodeDom.Compiler.CompilerParameters options,  Class System.CodeDom.CodeCompileUnit compilationUnit);
  533.      Class System.CodeDom.Compiler.CompilerResults CompileAssemblyFromFile( Class System.CodeDom.Compiler.CompilerParameters options,  String fileName);
  534.      Class System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSource( Class System.CodeDom.Compiler.CompilerParameters options,  String source);
  535.      Class System.CodeDom.Compiler.CompilerResults CompileAssemblyFromDomBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray Class System.CodeDom.CodeCompileUnit compilationUnits);
  536.      Class System.CodeDom.Compiler.CompilerResults CompileAssemblyFromFileBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray String fileNames);
  537.      Class System.CodeDom.Compiler.CompilerResults CompileAssemblyFromSourceBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray String sources);
  538.     }
  539. interface System.CodeDom.Compiler.ICodeGenerator : 
  540.     {
  541.      Boolean IsValidIdentifier( String value);
  542.      Void ValidateIdentifier( String value);
  543.      String CreateEscapedIdentifier( String value);
  544.      String CreateValidIdentifier( String value);
  545.      String GetTypeOutput( Class System.CodeDom.CodeTypeReference type);
  546.      Boolean Supports( ValueClass System.CodeDom.Compiler.GeneratorSupport supports);
  547.      Void GenerateCodeFromExpression( Class System.CodeDom.CodeExpression e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  548.      Void GenerateCodeFromStatement( Class System.CodeDom.CodeStatement e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  549.      Void GenerateCodeFromNamespace( Class System.CodeDom.CodeNamespace e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  550.      Void GenerateCodeFromCompileUnit( Class System.CodeDom.CodeCompileUnit e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  551.      Void GenerateCodeFromType( Class System.CodeDom.CodeTypeDeclaration e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  552.     }
  553. interface System.CodeDom.Compiler.ICodeParser : 
  554.     {
  555.      Class System.CodeDom.CodeCompileUnit Parse( Class System.IO.TextReader codeStream);
  556.     }
  557. class System.CodeDom.Compiler.LanguageOptions : System.Enum
  558.     {
  559.      I4 value__;
  560.      ValueClass System.CodeDom.Compiler.LanguageOptions None;
  561.      ValueClass System.CodeDom.Compiler.LanguageOptions CaseInsensitive;
  562.     }
  563. class System.CodeDom.Compiler.CodeGenerator : System.Object
  564.     {
  565.      I4 ParameterMultilineThreshold;
  566.      Class System.CodeDom.Compiler.IndentedTextWriter output;
  567.      Class System.CodeDom.Compiler.CodeGeneratorOptions options;
  568.      Class System.CodeDom.CodeTypeDeclaration currentClass;
  569.      Class System.CodeDom.CodeTypeMember currentMember;
  570.      Boolean inNestedBinary;
  571.      String get_CurrentTypeName();
  572.      Class System.CodeDom.CodeTypeMember get_CurrentMember();
  573.      String get_CurrentMemberName();
  574.      Boolean get_IsCurrentInterface();
  575.      Boolean get_IsCurrentClass();
  576.      Boolean get_IsCurrentStruct();
  577.      Boolean get_IsCurrentEnum();
  578.      Boolean get_IsCurrentDelegate();
  579.      I4 get_Indent();
  580.      Void set_Indent( I4 value);
  581.      String get_NullToken();
  582.      Class System.IO.TextWriter get_Output();
  583.      Class System.CodeDom.Compiler.CodeGeneratorOptions get_Options();
  584.      Void GenerateType( Class System.CodeDom.CodeTypeDeclaration e);
  585.      Void GenerateTypeConstructors( Class System.CodeDom.CodeTypeDeclaration e);
  586.      Void GenerateNamespaces( Class System.CodeDom.CodeCompileUnit e);
  587.      Void GenerateTypes( Class System.CodeDom.CodeNamespace e);
  588.      Boolean System.CodeDom.Compiler.ICodeGenerator.Supports( ValueClass System.CodeDom.Compiler.GeneratorSupport support);
  589.      Void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromType( Class System.CodeDom.CodeTypeDeclaration e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  590.      Void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromExpression( Class System.CodeDom.CodeExpression e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  591.      Void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromCompileUnit( Class System.CodeDom.CodeCompileUnit e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  592.      Void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromNamespace( Class System.CodeDom.CodeNamespace e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  593.      Void System.CodeDom.Compiler.ICodeGenerator.GenerateCodeFromStatement( Class System.CodeDom.CodeStatement e,  Class System.IO.TextWriter w,  Class System.CodeDom.Compiler.CodeGeneratorOptions o);
  594.      Boolean System.CodeDom.Compiler.ICodeGenerator.IsValidIdentifier( String value);
  595.      Void System.CodeDom.Compiler.ICodeGenerator.ValidateIdentifier( String value);
  596.      String System.CodeDom.Compiler.ICodeGenerator.CreateEscapedIdentifier( String value);
  597.      String System.CodeDom.Compiler.ICodeGenerator.CreateValidIdentifier( String value);
  598.      String System.CodeDom.Compiler.ICodeGenerator.GetTypeOutput( Class System.CodeDom.CodeTypeReference type);
  599.      Void GenerateConstructors( Class System.CodeDom.CodeTypeDeclaration e);
  600.      Void GenerateEvents( Class System.CodeDom.CodeTypeDeclaration e);
  601.      Void GenerateExpression( Class System.CodeDom.CodeExpression e);
  602.      Void GenerateFields( Class System.CodeDom.CodeTypeDeclaration e);
  603.      Void GenerateSnippetMembers( Class System.CodeDom.CodeTypeDeclaration e);
  604.      Void GenerateSnippetCompileUnit( Class System.CodeDom.CodeSnippetCompileUnit e);
  605.      Void GenerateMethods( Class System.CodeDom.CodeTypeDeclaration e);
  606.      Void GenerateNestedTypes( Class System.CodeDom.CodeTypeDeclaration e);
  607.      Void GenerateCompileUnit( Class System.CodeDom.CodeCompileUnit e);
  608.      Void GenerateNamespace( Class System.CodeDom.CodeNamespace e);
  609.      Void GenerateNamespaceImports( Class System.CodeDom.CodeNamespace e);
  610.      Void GenerateProperties( Class System.CodeDom.CodeTypeDeclaration e);
  611.      Void GenerateStatement( Class System.CodeDom.CodeStatement e);
  612.      Void GenerateStatements( Class System.CodeDom.CodeStatementCollection stms);
  613.      Void OutputAttributeDeclarations( Class System.CodeDom.CodeAttributeDeclarationCollection attributes);
  614.      Void OutputAttributeArgument( Class System.CodeDom.CodeAttributeArgument arg);
  615.      Void OutputDirection( ValueClass System.CodeDom.FieldDirection dir);
  616.      Void OutputFieldScopeModifier( ValueClass System.CodeDom.MemberAttributes attributes);
  617.      Void OutputMemberAccessModifier( ValueClass System.CodeDom.MemberAttributes attributes);
  618.      Void OutputMemberScopeModifier( ValueClass System.CodeDom.MemberAttributes attributes);
  619.      Void OutputType( Class System.CodeDom.CodeTypeReference typeRef);
  620.      Void OutputTypeAttributes( ValueClass System.Reflection.TypeAttributes attributes,  Boolean isStruct,  Boolean isEnum);
  621.      Void OutputTypeNamePair( Class System.CodeDom.CodeTypeReference typeRef,  String name);
  622.      Void OutputIdentifier( String ident);
  623.      Void OutputExpressionList( Class System.CodeDom.CodeExpressionCollection expressions);
  624.      Void OutputExpressionList( Class System.CodeDom.CodeExpressionCollection expressions,  Boolean newlineBetweenItems);
  625.      Void OutputOperator( ValueClass System.CodeDom.CodeBinaryOperatorType op);
  626.      Void OutputParameters( Class System.CodeDom.CodeParameterDeclarationExpressionCollection parameters);
  627.      Void GenerateArrayCreateExpression( Class System.CodeDom.CodeArrayCreateExpression e);
  628.      Void GenerateBaseReferenceExpression( Class System.CodeDom.CodeBaseReferenceExpression e);
  629.      Void GenerateBinaryOperatorExpression( Class System.CodeDom.CodeBinaryOperatorExpression e);
  630.      Void ContinueOnNewLine( String st);
  631.      Void GenerateCastExpression( Class System.CodeDom.CodeCastExpression e);
  632.      Void GenerateDelegateCreateExpression( Class System.CodeDom.CodeDelegateCreateExpression e);
  633.      Void GenerateFieldReferenceExpression( Class System.CodeDom.CodeFieldReferenceExpression e);
  634.      Void GenerateArgumentReferenceExpression( Class System.CodeDom.CodeArgumentReferenceExpression e);
  635.      Void GenerateVariableReferenceExpression( Class System.CodeDom.CodeVariableReferenceExpression e);
  636.      Void GenerateIndexerExpression( Class System.CodeDom.CodeIndexerExpression e);
  637.      Void GenerateArrayIndexerExpression( Class System.CodeDom.CodeArrayIndexerExpression e);
  638.      Void GenerateSnippetExpression( Class System.CodeDom.CodeSnippetExpression e);
  639.      Void GenerateMethodInvokeExpression( Class System.CodeDom.CodeMethodInvokeExpression e);
  640.      Void GenerateMethodReferenceExpression( Class System.CodeDom.CodeMethodReferenceExpression e);
  641.      Void GenerateEventReferenceExpression( Class System.CodeDom.CodeEventReferenceExpression e);
  642.      Void GenerateDelegateInvokeExpression( Class System.CodeDom.CodeDelegateInvokeExpression e);
  643.      Void GenerateObjectCreateExpression( Class System.CodeDom.CodeObjectCreateExpression e);
  644.      Void GenerateParameterDeclarationExpression( Class System.CodeDom.CodeParameterDeclarationExpression e);
  645.      Void GenerateDirectionExpression( Class System.CodeDom.CodeDirectionExpression e);
  646.      Void GeneratePrimitiveExpression( Class System.CodeDom.CodePrimitiveExpression e);
  647.      Void GenerateSingleFloatValue( R4 s);
  648.      Void GenerateDoubleValue( R8 d);
  649.      Void GenerateDecimalValue( ValueClass System.Decimal d);
  650.      Void GeneratePropertyReferenceExpression( Class System.CodeDom.CodePropertyReferenceExpression e);
  651.      Void GeneratePropertySetValueReferenceExpression( Class System.CodeDom.CodePropertySetValueReferenceExpression e);
  652.      Void GenerateThisReferenceExpression( Class System.CodeDom.CodeThisReferenceExpression e);
  653.      Void GenerateTypeReferenceExpression( Class System.CodeDom.CodeTypeReferenceExpression e);
  654.      Void GenerateTypeOfExpression( Class System.CodeDom.CodeTypeOfExpression e);
  655.      Void GenerateExpressionStatement( Class System.CodeDom.CodeExpressionStatement e);
  656.      Void GenerateIterationStatement( Class System.CodeDom.CodeIterationStatement e);
  657.      Void GenerateThrowExceptionStatement( Class System.CodeDom.CodeThrowExceptionStatement e);
  658.      Void GenerateCommentStatement( Class System.CodeDom.CodeCommentStatement e);
  659.      Void GenerateCommentStatements( Class System.CodeDom.CodeCommentStatementCollection e);
  660.      Void GenerateComment( Class System.CodeDom.CodeComment e);
  661.      Void GenerateMethodReturnStatement( Class System.CodeDom.CodeMethodReturnStatement e);
  662.      Void GenerateConditionStatement( Class System.CodeDom.CodeConditionStatement e);
  663.      Void GenerateTryCatchFinallyStatement( Class System.CodeDom.CodeTryCatchFinallyStatement e);
  664.      Void GenerateAssignStatement( Class System.CodeDom.CodeAssignStatement e);
  665.      Void GenerateAttachEventStatement( Class System.CodeDom.CodeAttachEventStatement e);
  666.      Void GenerateRemoveEventStatement( Class System.CodeDom.CodeRemoveEventStatement e);
  667.      Void GenerateGotoStatement( Class System.CodeDom.CodeGotoStatement e);
  668.      Void GenerateLabeledStatement( Class System.CodeDom.CodeLabeledStatement e);
  669.      Void GenerateSnippetStatement( Class System.CodeDom.CodeSnippetStatement e);
  670.      Void GenerateVariableDeclarationStatement( Class System.CodeDom.CodeVariableDeclarationStatement e);
  671.      Void GenerateLinePragmaStart( Class System.CodeDom.CodeLinePragma e);
  672.      Void GenerateLinePragmaEnd( Class System.CodeDom.CodeLinePragma e);
  673.      Void GenerateEvent( Class System.CodeDom.CodeMemberEvent e,  Class System.CodeDom.CodeTypeDeclaration c);
  674.      Void GenerateField( Class System.CodeDom.CodeMemberField e);
  675.      Void GenerateSnippetMember( Class System.CodeDom.CodeSnippetTypeMember e);
  676.      Void GenerateEntryPointMethod( Class System.CodeDom.CodeEntryPointMethod e,  Class System.CodeDom.CodeTypeDeclaration c);
  677.      Void GenerateMethod( Class System.CodeDom.CodeMemberMethod e,  Class System.CodeDom.CodeTypeDeclaration c);
  678.      Void GenerateProperty( Class System.CodeDom.CodeMemberProperty e,  Class System.CodeDom.CodeTypeDeclaration c);
  679.      Void GenerateConstructor( Class System.CodeDom.CodeConstructor e,  Class System.CodeDom.CodeTypeDeclaration c);
  680.      Void GenerateTypeConstructor( Class System.CodeDom.CodeTypeConstructor e);
  681.      Void GenerateTypeStart( Class System.CodeDom.CodeTypeDeclaration e);
  682.      Void GenerateTypeEnd( Class System.CodeDom.CodeTypeDeclaration e);
  683.      Void GenerateCompileUnitStart( Class System.CodeDom.CodeCompileUnit e);
  684.      Void GenerateCompileUnitEnd( Class System.CodeDom.CodeCompileUnit e);
  685.      Void GenerateNamespaceStart( Class System.CodeDom.CodeNamespace e);
  686.      Void GenerateNamespaceEnd( Class System.CodeDom.CodeNamespace e);
  687.      Void GenerateNamespaceImport( Class System.CodeDom.CodeNamespaceImport e);
  688.      Void GenerateAttributeDeclarationsStart( Class System.CodeDom.CodeAttributeDeclarationCollection attributes);
  689.      Void GenerateAttributeDeclarationsEnd( Class System.CodeDom.CodeAttributeDeclarationCollection attributes);
  690.      Boolean Supports( ValueClass System.CodeDom.Compiler.GeneratorSupport support);
  691.      Boolean IsValidIdentifier( String value);
  692.      Void ValidateIdentifier( String value);
  693.      String CreateEscapedIdentifier( String value);
  694.      String CreateValidIdentifier( String value);
  695.      String GetTypeOutput( Class System.CodeDom.CodeTypeReference value);
  696.      String QuoteSnippetString( String value);
  697.      Boolean IsValidLanguageIndependentIdentifier( String value);
  698.      Void System.CodeDom.Compiler.CodeGenerator();
  699.     property CurrentTypeName { get(){} set(){} };
  700.     property CurrentMember { get(){} set(){} };
  701.     property CurrentMemberName { get(){} set(){} };
  702.     property IsCurrentInterface { get(){} set(){} };
  703.     property IsCurrentClass { get(){} set(){} };
  704.     property IsCurrentStruct { get(){} set(){} };
  705.     property IsCurrentEnum { get(){} set(){} };
  706.     property IsCurrentDelegate { get(){} set(){} };
  707.     property Indent { get(){} set(){} };
  708.     property NullToken { get(){} set(){} };
  709.     property Output { get(){} set(){} };
  710.     property Options { get(){} set(){} };
  711.     }
  712. class System.CodeDom.Compiler.CodeCompiler : System.CodeDom.Compiler.CodeGenerator
  713.     {
  714.      Class System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDom( Class System.CodeDom.Compiler.CompilerParameters options,  Class System.CodeDom.CodeCompileUnit e);
  715.      Class System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFile( Class System.CodeDom.Compiler.CompilerParameters options,  String fileName);
  716.      Class System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSource( Class System.CodeDom.Compiler.CompilerParameters options,  String source);
  717.      Class System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray String sources);
  718.      Class System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromFileBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray String fileNames);
  719.      Class System.CodeDom.Compiler.CompilerResults System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray Class System.CodeDom.CodeCompileUnit ea);
  720.      String get_FileExtension();
  721.      String get_CompilerName();
  722.      Void Compile( Class System.CodeDom.Compiler.CompilerParameters options,  String compilerDirectory,  String compilerExe,  String arguments,  ByRef String outputFile,  ByRef I4 nativeReturnValue,  String trueArgs);
  723.      Class System.CodeDom.Compiler.CompilerResults FromDom( Class System.CodeDom.Compiler.CompilerParameters options,  Class System.CodeDom.CodeCompileUnit e);
  724.      Class System.CodeDom.Compiler.CompilerResults FromFile( Class System.CodeDom.Compiler.CompilerParameters options,  String fileName);
  725.      Class System.CodeDom.Compiler.CompilerResults FromSource( Class System.CodeDom.Compiler.CompilerParameters options,  String source);
  726.      Class System.CodeDom.Compiler.CompilerResults FromDomBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray Class System.CodeDom.CodeCompileUnit ea);
  727.      Void ResolveReferencedAssemblies( Class System.CodeDom.Compiler.CompilerParameters options,  Class System.CodeDom.CodeCompileUnit e);
  728.      Class System.CodeDom.Compiler.CompilerResults FromFileBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray String fileNames);
  729.      Void ProcessCompilerOutputLine( Class System.CodeDom.Compiler.CompilerResults results,  String line);
  730.      String CmdArgsFromParameters( Class System.CodeDom.Compiler.CompilerParameters options);
  731.      String GetResponseFileCmdArgs( Class System.CodeDom.Compiler.CompilerParameters options,  String cmdArgs);
  732.      Class System.CodeDom.Compiler.CompilerResults FromSourceBatch( Class System.CodeDom.Compiler.CompilerParameters options,  SZArray String sources);
  733.      String JoinStringArray( SZArray String sa,  String separator);
  734.      Void System.CodeDom.Compiler.CodeCompiler();
  735.     property FileExtension { get(){} set(){} };
  736.     property CompilerName { get(){} set(){} };
  737.     }
  738. class System.CodeDom.Compiler.CodeDomProvider : System.ComponentModel.Component
  739.     {
  740.      String get_FileExtension();
  741.      ValueClass System.CodeDom.Compiler.LanguageOptions get_LanguageOptions();
  742.      Class System.CodeDom.Compiler.ICodeGenerator CreateGenerator();
  743.      Class System.CodeDom.Compiler.ICodeGenerator CreateGenerator( Class System.IO.TextWriter output);
  744.      Class System.CodeDom.Compiler.ICodeGenerator CreateGenerator( String fileName);
  745.      Class System.CodeDom.Compiler.ICodeCompiler CreateCompiler();
  746.      Class System.CodeDom.Compiler.ICodeParser CreateParser();
  747.      Class System.ComponentModel.TypeConverter GetConverter( Class System.Type type);
  748.      Void System.CodeDom.Compiler.CodeDomProvider();
  749.     property FileExtension { get(){} set(){} };
  750.     property LanguageOptions { get(){} set(){} };
  751.     }
  752. class System.CodeDom.Compiler.CodeGeneratorOptions : System.Object
  753.     {
  754.      Class System.Collections.IDictionary options;
  755.      Void System.CodeDom.Compiler.CodeGeneratorOptions();
  756.      Object get_Item( String index);
  757.      Void set_Item( String index,  Object value);
  758.      String get_IndentString();
  759.      Void set_IndentString( String value);
  760.      String get_BracingStyle();
  761.      Void set_BracingStyle( String value);
  762.      Boolean get_ElseOnClosing();
  763.      Void set_ElseOnClosing( Boolean value);
  764.      Boolean get_BlankLinesBetweenMembers();
  765.      Void set_BlankLinesBetweenMembers( Boolean value);
  766.     property Item { get(){} set(){} };
  767.     property IndentString { get(){} set(){} };
  768.     property BracingStyle { get(){} set(){} };
  769.     property ElseOnClosing { get(){} set(){} };
  770.     property BlankLinesBetweenMembers { get(){} set(){} };
  771.     }
  772. class System.CodeDom.Compiler.CodeParser : System.Object
  773.     {
  774.      Class System.CodeDom.CodeCompileUnit Parse( Class System.IO.TextReader codeStream);
  775.      Void System.CodeDom.Compiler.CodeParser();
  776.     }
  777. class System.CodeDom.Compiler.CompilerError : System.Object
  778.     {
  779.      I4 line;
  780.      I4 column;
  781.      String errorNumber;
  782.      Boolean warning;
  783.      String errorText;
  784.      String fileName;
  785.      Void System.CodeDom.Compiler.CompilerError();
  786.      Void System.CodeDom.Compiler.CompilerError( String fileName,  I4 line,  I4 column,  String errorNumber,  String errorText);
  787.      I4 get_Line();
  788.      Void set_Line( I4 value);
  789.      I4 get_Column();
  790.      Void set_Column( I4 value);
  791.      String get_ErrorNumber();
  792.      Void set_ErrorNumber( String value);
  793.      String get_ErrorText();
  794.      Void set_ErrorText( String value);
  795.      Boolean get_IsWarning();
  796.      Void set_IsWarning( Boolean value);
  797.      String get_FileName();
  798.      Void set_FileName( String value);
  799.      String ToString();
  800.     property Line { get(){} set(){} };
  801.     property Column { get(){} set(){} };
  802.     property ErrorNumber { get(){} set(){} };
  803.     property ErrorText { get(){} set(){} };
  804.     property IsWarning { get(){} set(){} };
  805.     property FileName { get(){} set(){} };
  806.     }
  807. class System.CodeDom.Compiler.CompilerErrorCollection : System.Collections.CollectionBase
  808.     {
  809.      Void System.CodeDom.Compiler.CompilerErrorCollection();
  810.      Void System.CodeDom.Compiler.CompilerErrorCollection( Class System.CodeDom.Compiler.CompilerErrorCollection value);
  811.      Void System.CodeDom.Compiler.CompilerErrorCollection( SZArray Class System.CodeDom.Compiler.CompilerError value);
  812.      Class System.CodeDom.Compiler.CompilerError get_Item( I4 index);
  813.      Void set_Item( I4 index,  Class System.CodeDom.Compiler.CompilerError value);
  814.      I4 Add( Class System.CodeDom.Compiler.CompilerError value);
  815.      Void AddRange( SZArray Class System.CodeDom.Compiler.CompilerError value);
  816.      Void AddRange( Class System.CodeDom.Compiler.CompilerErrorCollection value);
  817.      Boolean Contains( Class System.CodeDom.Compiler.CompilerError value);
  818.      Void CopyTo( SZArray Class System.CodeDom.Compiler.CompilerError array,  I4 index);
  819.      Boolean get_HasErrors();
  820.      Boolean get_HasWarnings();
  821.      I4 IndexOf( Class System.CodeDom.Compiler.CompilerError value);
  822.      Void Insert( I4 index,  Class System.CodeDom.Compiler.CompilerError value);
  823.      Void Remove( Class System.CodeDom.Compiler.CompilerError value);
  824.     property Item { get(){} set(){} };
  825.     property HasErrors { get(){} set(){} };
  826.     property HasWarnings { get(){} set(){} };
  827.     }
  828. class System.CodeDom.Compiler.CompilerParameters : System.Object
  829.     {
  830.      Class System.Collections.Specialized.StringCollection assemblyNames;
  831.      String outputName;
  832.      String mainClass;
  833.      Boolean generateInMemory;
  834.      Boolean includeDebugInformation;
  835.      I4 warningLevel;
  836.      String compilerOptions;
  837.      String win32Resource;
  838.      Boolean treatWarningsAsErrors;
  839.      Boolean generateExecutable;
  840.      Class System.CodeDom.Compiler.TempFileCollection tempFiles;
  841.      I userToken;
  842.      Void System.CodeDom.Compiler.CompilerParameters();
  843.      Void System.CodeDom.Compiler.CompilerParameters( SZArray String assemblyNames);
  844.      Void System.CodeDom.Compiler.CompilerParameters( SZArray String assemblyNames,  String outputName);
  845.      Void System.CodeDom.Compiler.CompilerParameters( SZArray String assemblyNames,  String outputName,  Boolean includeDebugInformation);
  846.      Boolean get_GenerateExecutable();
  847.      Void set_GenerateExecutable( Boolean value);
  848.      Boolean get_GenerateInMemory();
  849.      Void set_GenerateInMemory( Boolean value);
  850.      Class System.Collections.Specialized.StringCollection get_ReferencedAssemblies();
  851.      String get_MainClass();
  852.      Void set_MainClass( String value);
  853.      String get_OutputAssembly();
  854.      Void set_OutputAssembly( String value);
  855.      Class System.CodeDom.Compiler.TempFileCollection get_TempFiles();
  856.      Void set_TempFiles( Class System.CodeDom.Compiler.TempFileCollection value);
  857.      Boolean get_IncludeDebugInformation();
  858.      Void set_IncludeDebugInformation( Boolean value);
  859.      Boolean get_TreatWarningsAsErrors();
  860.      Void set_TreatWarningsAsErrors( Boolean value);
  861.      I4 get_WarningLevel();
  862.      Void set_WarningLevel( I4 value);
  863.      String get_CompilerOptions();
  864.      Void set_CompilerOptions( String value);
  865.      String get_Win32Resource();
  866.      Void set_Win32Resource( String value);
  867.      I get_UserToken();
  868.      Void set_UserToken( I value);
  869.     property GenerateExecutable { get(){} set(){} };
  870.     property GenerateInMemory { get(){} set(){} };
  871.     property ReferencedAssemblies { get(){} set(){} };
  872.     property MainClass { get(){} set(){} };
  873.     property OutputAssembly { get(){} set(){} };
  874.     property TempFiles { get(){} set(){} };
  875.     property IncludeDebugInformation { get(){} set(){} };
  876.     property TreatWarningsAsErrors { get(){} set(){} };
  877.     property WarningLevel { get(){} set(){} };
  878.     property CompilerOptions { get(){} set(){} };
  879.     property Win32Resource { get(){} set(){} };
  880.     property UserToken { get(){} set(){} };
  881.     }
  882. class System.CodeDom.Compiler.CompilerResults : System.Object
  883.     {
  884.      Class System.CodeDom.Compiler.CompilerErrorCollection errors;
  885.      Class System.Collections.Specialized.StringCollection output;
  886.      Class System.Reflection.Assembly compiledAssembly;
  887.      String pathToAssembly;
  888.      I4 nativeCompilerReturnValue;
  889.      Class System.CodeDom.Compiler.TempFileCollection tempFiles;
  890.      Void System.CodeDom.Compiler.CompilerResults( Class System.CodeDom.Compiler.TempFileCollection tempFiles);
  891.      Class System.CodeDom.Compiler.TempFileCollection get_TempFiles();
  892.      Void set_TempFiles( Class System.CodeDom.Compiler.TempFileCollection value);
  893.      Class System.Reflection.Assembly get_CompiledAssembly();
  894.      Void set_CompiledAssembly( Class System.Reflection.Assembly value);
  895.      Class System.CodeDom.Compiler.CompilerErrorCollection get_Errors();
  896.      Class System.Collections.Specialized.StringCollection get_Output();
  897.      String get_PathToAssembly();
  898.      Void set_PathToAssembly( String value);
  899.      I4 get_NativeCompilerReturnValue();
  900.      Void set_NativeCompilerReturnValue( I4 value);
  901.     property TempFiles { get(){} set(){} };
  902.     property CompiledAssembly { get(){} set(){} };
  903.     property Errors { get(){} set(){} };
  904.     property Output { get(){} set(){} };
  905.     property PathToAssembly { get(){} set(){} };
  906.     property NativeCompilerReturnValue { get(){} set(){} };
  907.     }
  908. class System.CodeDom.Compiler.Executor : System.Object
  909.     {
  910.      I4 ProcessTimeOut;
  911.      Void System.CodeDom.Compiler.Executor();
  912.      String GetRuntimeInstallDirectory();
  913.      I CreateInheritedFile( String file);
  914.      Void ExecWait( String cmd,  Class System.CodeDom.Compiler.TempFileCollection tempFiles);
  915.      I4 ExecWaitWithCapture( String cmd,  Class System.CodeDom.Compiler.TempFileCollection tempFiles,  ByRef String outputName,  ByRef String errorName);
  916.      I4 ExecWaitWithCapture( String cmd,  String currentDir,  Class System.CodeDom.Compiler.TempFileCollection tempFiles,  ByRef String outputName,  ByRef String errorName);
  917.      I4 ExecWaitWithCapture( I userToken,  String cmd,  Class System.CodeDom.Compiler.TempFileCollection tempFiles,  ByRef String outputName,  ByRef String errorName);
  918.      I4 ExecWaitWithCapture( I userToken,  String cmd,  Class System.CodeDom.Compiler.TempFileCollection tempFiles,  ByRef String outputName,  ByRef String errorName,  String trueCmdLine);
  919.      I4 ExecWaitWithCapture( I userToken,  String cmd,  String currentDir,  Class System.CodeDom.Compiler.TempFileCollection tempFiles,  ByRef String outputName,  ByRef String errorName);
  920.      I4 ExecWaitWithCapture( I userToken,  String cmd,  String currentDir,  Class System.CodeDom.Compiler.TempFileCollection tempFiles,  ByRef String outputName,  ByRef String errorName,  String trueCmdLine);
  921.      SZArray UI1 EnvironmentToByteArray( Class System.Collections.Specialized.StringDictionary sd);
  922.     }
  923. class System.CodeDom.Compiler.IndentedTextWriter : System.IO.TextWriter
  924.     {
  925.      String DefaultTabString;
  926.      Class System.IO.TextWriter writer;
  927.      I4 indentLevel;
  928.      Boolean tabsPending;
  929.      String tabString;
  930.      Void System.CodeDom.Compiler.IndentedTextWriter( Class System.IO.TextWriter writer);
  931.      Void System.CodeDom.Compiler.IndentedTextWriter( Class System.IO.TextWriter writer,  String tabString);
  932.      Class System.Text.Encoding get_Encoding();
  933.      String get_NewLine();
  934.      Void set_NewLine( String value);
  935.      I4 get_Indent();
  936.      Void set_Indent( I4 value);
  937.      Class System.IO.TextWriter get_InnerWriter();
  938.      Void Close();
  939.      Void Flush();
  940.      Void OutputTabs();
  941.      Void Write( String s);
  942.      Void Write( Boolean value);
  943.      Void Write( Char value);
  944.      Void Write( SZArray Char buffer);
  945.      Void Write( SZArray Char buffer,  I4 index,  I4 count);
  946.      Void Write( R8 value);
  947.      Void Write( R4 value);
  948.      Void Write( I4 value);
  949.      Void Write( I8 value);
  950.      Void Write( Object value);
  951.      Void Write( String format,  Object arg0);
  952.      Void Write( String format,  Object arg0,  Object arg1);
  953.      Void Write( String format,  SZArray Object arg);
  954.      Void WriteLineNoTabs( String s);
  955.      Void WriteLine( String s);
  956.      Void WriteLine();
  957.      Void WriteLine( Boolean value);
  958.      Void WriteLine( Char value);
  959.      Void WriteLine( SZArray Char buffer);
  960.      Void WriteLine( SZArray Char buffer,  I4 index,  I4 count);
  961.      Void WriteLine( R8 value);
  962.      Void WriteLine( R4 value);
  963.      Void WriteLine( I4 value);
  964.      Void WriteLine( I8 value);
  965.      Void WriteLine( Object value);
  966.      Void WriteLine( String format,  Object arg0);
  967.      Void WriteLine( String format,  Object arg0,  Object arg1);
  968.      Void WriteLine( String format,  SZArray Object arg);
  969.      Void WriteLine( UI4 value);
  970.     property Encoding { get(){} set(){} };
  971.     property NewLine { get(){} set(){} };
  972.     property Indent { get(){} set(){} };
  973.     property InnerWriter { get(){} set(){} };
  974.     }
  975. class System.CodeDom.Compiler.TempFileCollection : System.Object
  976.     {
  977.      Class System.Security.Cryptography.RNGCryptoServiceProvider rng;
  978.      String basePath;
  979.      String tempDir;
  980.      Boolean keepFiles;
  981.      Class System.Collections.Hashtable files;
  982.      Void System.CodeDom.Compiler.TempFileCollection();
  983.      Void System.CodeDom.Compiler.TempFileCollection();
  984.      Void System.CodeDom.Compiler.TempFileCollection( String tempDir);
  985.      Void System.CodeDom.Compiler.TempFileCollection( String tempDir,  Boolean keepFiles);
  986.      Void System.IDisposable.Dispose();
  987.      Void Dispose( Boolean disposing);
  988.      Void Finalize();
  989.      String AddExtension( String fileExtension);
  990.      String AddExtension( String fileExtension,  Boolean keepFile);
  991.      Void AddFile( String fileName,  Boolean keepFile);
  992.      Class System.Collections.IEnumerator GetEnumerator();
  993.      Class System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator();
  994.      Void System.Collections.ICollection.CopyTo( Class System.Array array,  I4 start);
  995.      Void CopyTo( SZArray String fileNames,  I4 start);
  996.      I4 get_Count();
  997.      I4 System.Collections.ICollection.get_Count();
  998.      Object System.Collections.ICollection.get_SyncRoot();
  999.      Boolean System.Collections.ICollection.get_IsSynchronized();
  1000.      String get_TempDir();
  1001.      String get_BasePath();
  1002.      Void EnsureTempNameCreated();
  1003.      Boolean get_KeepFiles();
  1004.      Void set_KeepFiles( Boolean value);
  1005.      Boolean KeepFile( String fileName);
  1006.      Void Delete();
  1007.      Void Delete( String fileName);
  1008.      String GetTempFileName( String tempDir);
  1009.      String GenerateRandomFileName();
  1010.     property Count { get(){} set(){} };
  1011.     property TempDir { get(){} set(){} };
  1012.     property BasePath { get(){} set(){} };
  1013.     property KeepFiles { get(){} set(){} };
  1014.     }
  1015. class System.ComponentModel.Design.ActiveDesignerEventHandler : System.MulticastDelegate
  1016.     {
  1017.      Void System.ComponentModel.Design.ActiveDesignerEventHandler( Object object,  I method);
  1018.      Void Invoke( Object sender,  Class System.ComponentModel.Design.ActiveDesignerEventArgs e);
  1019.      Class System.IAsyncResult BeginInvoke( Object sender,  Class System.ComponentModel.Design.ActiveDesignerEventArgs e,  Class System.AsyncCallback callback,  Object object);
  1020.      Void EndInvoke( Class System.IAsyncResult result);
  1021.     }
  1022. class System.ComponentModel.Design.ComponentChangedEventHandler : System.MulticastDelegate
  1023.     {
  1024.      Void System.ComponentModel.Design.ComponentChangedEventHandler( Object object,  I method);
  1025.      Void Invoke( Object sender,  Class System.ComponentModel.Design.ComponentChangedEventArgs e);
  1026.      Class System.IAsyncResult BeginInvoke( Object sender,  Class System.ComponentModel.Design.ComponentChangedEventArgs e,  Class System.AsyncCallback callback,  Object object);
  1027.      Void EndInvoke( Class System.IAsyncResult result);
  1028.     }
  1029. class System.ComponentModel.Design.ComponentChangingEventHandler : System.MulticastDelegate
  1030.     {
  1031.      Void System.ComponentModel.Design.ComponentChangingEventHandler( Object object,  I method);
  1032.      Void Invoke( Object sender,  Class System.ComponentModel.Design.ComponentChangingEventArgs e);
  1033.      Class System.IAsyncResult BeginInvoke( Object sender,  Class System.ComponentModel.Design.ComponentChangingEventArgs e,  Class System.AsyncCallback callback,  Object object);
  1034.      Void EndInvoke( Class System.IAsyncResult result);
  1035.     }
  1036. class System.ComponentModel.Design.ComponentEventHandler : System.MulticastDelegate
  1037.     {
  1038.      Void System.ComponentModel.Design.ComponentEventHandler( Object object,  I method);
  1039.      Void Invoke( Object sender,  Class System.ComponentModel.Design.ComponentEventArgs e);
  1040.      Class System.IAsyncResult BeginInvoke( Object sender,  Class System.ComponentModel.Design.ComponentEventArgs e,  Class System.AsyncCallback callback,  Object object);
  1041.      Void EndInvoke( Class System.IAsyncResult result);
  1042.     }
  1043. class System.ComponentModel.Design.ComponentRenameEventHandler : System.MulticastDelegate
  1044.     {
  1045.      Void System.ComponentModel.Design.ComponentRenameEventHandler( Object object,  I method);
  1046.      Void Invoke( Object sender,  Class System.ComponentModel.Design.ComponentRenameEventArgs e);
  1047.      Class System.IAsyncResult BeginInvoke( Object sender,  Class System.ComponentModel.Design.ComponentRenameEventArgs e,  Class System.AsyncCallback callback,  Object object);
  1048.      Void EndInvoke( Class System.IAsyncResult result);
  1049.     }
  1050. class System.ComponentModel.Design.DesignerTransactionCloseEventHandler : System.MulticastDelegate
  1051.     {
  1052.      Void System.ComponentModel.Design.DesignerTransactionCloseEventHandler( Object object,  I method);
  1053.      Void Invoke( Object sender,  Class System.ComponentModel.Design.DesignerTransactionCloseEventArgs e);
  1054.      Class System.IAsyncResult BeginInvoke( Object sender,  Class System.ComponentModel.Design.DesignerTransactionCloseEventArgs e,  Class System.AsyncCallback callback,  Object object);
  1055.      Void EndInvoke( Class System.IAsyncResult result);
  1056.     }
  1057. class System.ComponentModel.Design.DesignerEventHandler : System.MulticastDelegate
  1058.     {
  1059.      Void System.ComponentModel.Design.DesignerEventHandler( Object object,  I method);
  1060.      Void Invoke( Object sender,  Class System.ComponentModel.Design.DesignerEventArgs e);
  1061.      Class System.IAsyncResult BeginInvoke( Object sender,  Class System.ComponentModel.Design.DesignerEventArgs e,  Class System.AsyncCallback callback,  Object object);
  1062.      Void EndInvoke( Class System.IAsyncResult result);
  1063.     }
  1064. class System.ComponentModel.Design.HelpContextType : System.Enum
  1065.     {
  1066.      I4 value__;
  1067.      ValueClass System.ComponentModel.Design.HelpContextType Ambient;
  1068.      ValueClass System.ComponentModel.Design.HelpContextType Window;
  1069.      ValueClass System.ComponentModel.Design.HelpContextType Selection;
  1070.      ValueClass System.ComponentModel.Design.HelpContextType ToolWindowSelection;
  1071.     }
  1072. class System.ComponentModel.Design.HelpKeywordType : System.Enum
  1073.     {
  1074.      I4 value__;
  1075.      ValueClass System.ComponentModel.Design.HelpKeywordType F1Keyword;
  1076.      ValueClass System.ComponentModel.Design.HelpKeywordType GeneralKeyword;
  1077.      ValueClass System.ComponentModel.Design.HelpKeywordType FilterKeyword;
  1078.     }
  1079. interface System.ComponentModel.Design.IComponentChangeService : 
  1080.     {
  1081.      Void add_ComponentAdded( Class System.ComponentModel.Design.ComponentEventHandler value);
  1082.      Void remove_ComponentAdded( Class System.ComponentModel.Design.ComponentEventHandler value);
  1083.      Void add_ComponentAdding( Class System.ComponentModel.Design.ComponentEventHandler value);
  1084.      Void remove_ComponentAdding( Class System.ComponentModel.Design.ComponentEventHandler value);
  1085.      Void add_ComponentChanged( Class System.ComponentModel.Design.ComponentChangedEventHandler value);
  1086.      Void remove_ComponentChanged( Class System.ComponentModel.Design.ComponentChangedEventHandler value);
  1087.      Void add_ComponentChanging( Class System.ComponentModel.Design.ComponentChangingEventHandler value);
  1088.      Void remove_ComponentChanging( Class System.ComponentModel.Design.ComponentChangingEventHandler value);
  1089.      Void add_ComponentRemoved( Class System.ComponentModel.Design.ComponentEventHandler value);
  1090.      Void remove_ComponentRemoved( Class System.ComponentModel.Design.ComponentEventHandler value);
  1091.      Void add_ComponentRemoving( Class System.ComponentModel.Design.ComponentEventHandler value);
  1092.      Void remove_ComponentRemoving( Class System.ComponentModel.Design.ComponentEventHandler value);
  1093.      Void add_ComponentRename( Class System.ComponentModel.Design.ComponentRenameEventHandler value);
  1094.      Void remove_ComponentRename( Class System.ComponentModel.Design.ComponentRenameEventHandler value);
  1095.      Void OnComponentChanged( Object component,  Class System.ComponentModel.MemberDescriptor member,  Object oldValue,  Object newValue);
  1096.      Void OnComponentChanging( Object component,  Class System.ComponentModel.MemberDescriptor member);
  1097.     event ComponentAdded;
  1098.     event ComponentAdding;
  1099.     event ComponentChanged;
  1100.     event ComponentChanging;
  1101.     event ComponentRemoved;
  1102.     event ComponentRemoving;
  1103.     event ComponentRename;
  1104.     }
  1105. interface System.ComponentModel.Design.IDesigner : 
  1106.     {
  1107.      Class System.ComponentModel.IComponent get_Component();
  1108.      Class System.ComponentModel.Design.DesignerVerbCollection get_Verbs();
  1109.      Void DoDefaultAction();
  1110.      Void Initialize( Class System.ComponentModel.IComponent component);
  1111.     property Component { get(){} set(){} };
  1112.     property Verbs { get(){} set(){} };
  1113.     }
  1114. interface System.ComponentModel.Design.IDesignerEventService : 
  1115.     {
  1116.      Class System.ComponentModel.Design.IDesignerHost get_ActiveDesigner();
  1117.      Class System.ComponentModel.Design.DesignerCollection get_Designers();
  1118.      Void add_ActiveDesignerChanged( Class System.ComponentModel.Design.ActiveDesignerEventHandler value);
  1119.      Void remove_ActiveDesignerChanged( Class System.ComponentModel.Design.ActiveDesignerEventHandler value);
  1120.      Void add_DesignerCreated( Class System.ComponentModel.Design.DesignerEventHandler value);
  1121.      Void remove_DesignerCreated( Class System.ComponentModel.Design.DesignerEventHandler value);
  1122.      Void add_DesignerDisposed( Class System.ComponentModel.Design.DesignerEventHandler value);
  1123.      Void remove_DesignerDisposed( Class System.ComponentModel.Design.DesignerEventHandler value);
  1124.      Void add_SelectionChanged( Class System.EventHandler value);
  1125.      Void remove_SelectionChanged( Class System.EventHandler value);
  1126.     property ActiveDesigner { get(){} set(){} };
  1127.     property Designers { get(){} set(){} };
  1128.     event ActiveDesignerChanged;
  1129.     event DesignerCreated;
  1130.     event DesignerDisposed;
  1131.     event SelectionChanged;
  1132.     }
  1133. interface System.ComponentModel.Design.IDesignerFilter : 
  1134.     {
  1135.      Void PostFilterAttributes( Class System.Collections.IDictionary attributes);
  1136.      Void PostFilterEvents( Class System.Collections.IDictionary events);
  1137.      Void PostFilterProperties( Class System.Collections.IDictionary properties);
  1138.      Void PreFilterAttributes( Class System.Collections.IDictionary attributes);
  1139.      Void PreFilterEvents( Class System.Collections.IDictionary events);
  1140.      Void PreFilterProperties( Class System.Collections.IDictionary properties);
  1141.     }
  1142. interface System.ComponentModel.Design.IServiceContainer : 
  1143.     {
  1144.      Void AddService( Class System.Type serviceType,  Object serviceInstance);
  1145.      Void AddService( Class System.Type serviceType,  Object serviceInstance,  Boolean promote);
  1146.      Void AddService( Class System.Type serviceType,  Class System.ComponentModel.Design.ServiceCreatorCallback callback);
  1147.      Void AddService( Class System.Type serviceType,  Class System.ComponentModel.Design.ServiceCreatorCallback callback,  Boolean promote);
  1148.      Void RemoveService( Class System.Type serviceType);
  1149.      Void RemoveService( Class System.Type serviceType,  Boolean promote);
  1150.     }
  1151. interface System.ComponentModel.Design.IDesignerHost : 
  1152.     {
  1153.      Boolean get_Loading();
  1154.      Boolean get_InTransaction();
  1155.      Class System.ComponentModel.IContainer get_Container();
  1156.      Class System.ComponentModel.IComponent get_RootComponent();
  1157.      String get_RootComponentClassName();
  1158.      String get_TransactionDescription();
  1159.      Void add_Activated( Class System.EventHandler value);
  1160.      Void remove_Activated( Class System.EventHandler value);
  1161.      Void add_Deactivated( Class System.EventHandler value);
  1162.      Void remove_Deactivated( Class System.EventHandler value);
  1163.      Void add_LoadComplete( Class System.EventHandler value);
  1164.      Void remove_LoadComplete( Class System.EventHandler value);
  1165.      Void add_TransactionClosed( Class System.ComponentModel.Design.DesignerTransactionCloseEventHandler value);
  1166.      Void remove_TransactionClosed( Class System.ComponentModel.Design.DesignerTransactionCloseEventHandler value);
  1167.      Void add_TransactionClosing( Class System.ComponentModel.Design.DesignerTransactionCloseEventHandler value);
  1168.      Void remove_TransactionClosing( Class System.ComponentModel.Design.DesignerTransactionCloseEventHandler value);
  1169.      Void add_TransactionOpened( Class System.EventHandler value);
  1170.      Void remove_TransactionOpened( Class System.EventHandler value);
  1171.      Void add_TransactionOpening( Class System.EventHandler value);
  1172.      Void remove_TransactionOpening( Class System.EventHandler value);
  1173.      Void Activate();
  1174.      Class System.ComponentModel.IComponent CreateComponent( Class System.Type componentClass);
  1175.      Class System.ComponentModel.IComponent CreateComponent( Class System.Type componentClass,  String name);
  1176.      Class System.ComponentModel.Design.DesignerTransaction CreateTransaction();
  1177.      Class System.ComponentModel.Design.DesignerTransaction CreateTransaction( String description);
  1178.      Void DestroyComponent( Class System.ComponentModel.IComponent component);
  1179.      Class System.ComponentModel.Design.IDesigner GetDesigner( Class System.ComponentModel.IComponent component);
  1180.      Class System.Type GetType( String typeName);
  1181.     property Loading { get(){} set(){} };
  1182.     property InTransaction { get(){} set(){} };
  1183.     property Container { get(){} set(){} };
  1184.     property RootComponent { get(){} set(){} };
  1185.     property RootComponentClassName { get(){} set(){} };
  1186.     property TransactionDescription { get(){} set(){} };
  1187.     event Activated;
  1188.     event Deactivated;
  1189.     event LoadComplete;
  1190.     event TransactionClosed;
  1191.     event TransactionClosing;
  1192.     event TransactionOpened;
  1193.     event TransactionOpening;
  1194.     }
  1195. interface System.ComponentModel.Design.IDesignerOptionService : 
  1196.     {
  1197.      Object GetOptionValue( String pageName,  String valueName);
  1198.      Void SetOptionValue( String pageName,  String valueName,  Object value);
  1199.     }
  1200. interface System.ComponentModel.Design.IDictionaryService : 
  1201.     {
  1202.      Object GetKey( Object value);
  1203.      Object GetValue( Object key);
  1204.      Void SetValue( Object key,  Object value);
  1205.     }
  1206. interface System.ComponentModel.Design.IEventBindingService : 
  1207.     {
  1208.      String CreateUniqueMethodName( Class System.ComponentModel.IComponent component,  Class System.ComponentModel.EventDescriptor e);
  1209.      Class System.Collections.ICollection GetCompatibleMethods( Class System.ComponentModel.EventDescriptor e);
  1210.      Class System.ComponentModel.EventDescriptor GetEvent( Class System.ComponentModel.PropertyDescriptor property);
  1211.      Class System.ComponentModel.PropertyDescriptorCollection GetEventProperties( Class System.ComponentModel.EventDescriptorCollection events);
  1212.      Class System.ComponentModel.PropertyDescriptor GetEventProperty( Class System.ComponentModel.EventDescriptor e);
  1213.      Boolean ShowCode();
  1214.      Boolean ShowCode( I4 lineNumber);
  1215.      Boolean ShowCode( Class System.ComponentModel.IComponent component,  Class System.ComponentModel.EventDescriptor e);
  1216.     }
  1217. interface System.ComponentModel.Design.IExtenderListService : 
  1218.     {
  1219.      SZArray Class System.ComponentModel.IExtenderProvider GetExtenderProviders();
  1220.     }
  1221. interface System.ComponentModel.Design.IExtenderProviderService : 
  1222.     {
  1223.      Void AddExtenderProvider( Class System.ComponentModel.IExtenderProvider provider);
  1224.      Void RemoveExtenderProvider( Class System.ComponentModel.IExtenderProvider provider);
  1225.     }
  1226. interface System.ComponentModel.Design.IHelpService : 
  1227.     {
  1228.      Void AddContextAttribute( String name,  String value,  ValueClass System.ComponentModel.Design.HelpKeywordType keywordType);
  1229.      Void ClearContextAttributes();
  1230.      Class System.ComponentModel.Design.IHelpService CreateLocalContext( ValueClass System.ComponentModel.Design.HelpContextType contextType);
  1231.      Void RemoveContextAttribute( String name,  String value);
  1232.      Void RemoveLocalContext( Class System.ComponentModel.Design.IHelpService localContext);
  1233.      Void ShowHelpFromKeyword( String helpKeyword);
  1234.      Void ShowHelpFromUrl( String helpUrl);
  1235.     }
  1236. interface System.ComponentModel.Design.IInheritanceService : 
  1237.     {
  1238.      Void AddInheritedComponents( Class System.ComponentModel.IComponent component,  Class System.ComponentModel.IContainer container);
  1239.      Class System.ComponentModel.InheritanceAttribute GetInheritanceAttribute( Class System.ComponentModel.IComponent component);
  1240.     }
  1241. interface System.ComponentModel.Design.IMenuCommandService : 
  1242.     {
  1243.      Class System.ComponentModel.Design.DesignerVerbCollection get_Verbs();
  1244.      Void AddCommand( Class System.ComponentModel.Design.MenuCommand command);
  1245.      Void AddVerb( Class System.ComponentModel.Design.DesignerVerb verb);
  1246.      Class System.ComponentModel.Design.MenuCommand FindCommand( Class System.ComponentModel.Design.CommandID commandID);
  1247.      Boolean GlobalInvoke( Class System.ComponentModel.Design.CommandID commandID);
  1248.      Void RemoveCommand( Class System.ComponentModel.Design.MenuCommand command);
  1249.      Void RemoveVerb( Class System.ComponentModel.Design.DesignerVerb verb);
  1250.      Void ShowContextMenu( Class System.ComponentModel.Design.CommandID menuID,  I4 x,  I4 y);
  1251.     property Verbs { get(){} set(){} };
  1252.     }
  1253. class System.ComponentModel.InheritanceAttribute : System.Attribute
  1254.     {
  1255.      ValueClass System.ComponentModel.InheritanceLevel inheritanceLevel;
  1256.      Class System.ComponentModel.InheritanceAttribute Inherited;
  1257.      Class System.ComponentModel.InheritanceAttribute InheritedReadOnly;
  1258.      Class System.ComponentModel.InheritanceAttribute NotInherited;
  1259.      Class System.ComponentModel.InheritanceAttribute Default;
  1260.      Void System.ComponentModel.InheritanceAttribute();
  1261.      Void System.ComponentModel.InheritanceAttribute( ValueClass System.ComponentModel.InheritanceLevel inheritanceLevel);
  1262.      ValueClass System.ComponentModel.InheritanceLevel get_InheritanceLevel();
  1263.      Boolean Equals( Object value);
  1264.      I4 GetHashCode();
  1265.      Boolean IsDefaultAttribute();
  1266.      String ToString();
  1267.      Void System.ComponentModel.InheritanceAttribute();
  1268.     property InheritanceLevel { get(){} set(){} };
  1269.     }
  1270. class System.ComponentModel.InheritanceLevel : System.Enum
  1271.     {
  1272.      I4 value__;
  1273.      ValueClass System.ComponentModel.InheritanceLevel Inherited;
  1274.      ValueClass System.ComponentModel.InheritanceLevel InheritedReadOnly;
  1275.      ValueClass System.ComponentModel.InheritanceLevel NotInherited;
  1276.     }
  1277. interface System.ComponentModel.Design.IReferenceService : 
  1278.     {
  1279.      Class System.ComponentModel.IComponent GetComponent( Object reference);
  1280.      Object GetReference( String name);
  1281.      String GetName( Object reference);
  1282.      SZArray Object GetReferences();
  1283.      SZArray Object GetReferences( Class System.Type baseType);
  1284.     }
  1285. interface System.ComponentModel.Design.IResourceService : 
  1286.     {
  1287.      Class System.Resources.IResourceReader GetResourceReader( Class System.Globalization.CultureInfo info);
  1288.      Class System.Resources.IResourceWriter GetResourceWriter( Class System.Globalization.CultureInfo info);
  1289.     }
  1290. interface System.ComponentModel.Design.IRootDesigner : 
  1291.     {
  1292.      SZArray ValueClass System.ComponentModel.Design.ViewTechnology get_SupportedTechnologies();
  1293.      Object GetView( ValueClass System.ComponentModel.Design.ViewTechnology technology);
  1294.     property SupportedTechnologies { get(){} set(){} };
  1295.     }
  1296. interface System.ComponentModel.Design.ISelectionService : 
  1297.     {
  1298.      Object get_PrimarySelection();
  1299.      I4 get_SelectionCount();
  1300.      Void add_SelectionChanged( Class System.EventHandler value);
  1301.      Void remove_SelectionChanged( Class System.EventHandler value);
  1302.      Void add_SelectionChanging( Class System.EventHandler value);
  1303.      Void remove_SelectionChanging( Class System.EventHandler value);
  1304.      Boolean GetComponentSelected( Object component);
  1305.      Class System.Collections.ICollection GetSelectedComponents();
  1306.      Void SetSelectedComponents( Class System.Collections.ICollection components);
  1307.      Void SetSelectedComponents( Class System.Collections.ICollection components,  ValueClass System.ComponentModel.Design.SelectionTypes selectionType);
  1308.     property PrimarySelection { get(){} set(){} };
  1309.     property SelectionCount { get(){} set(){} };
  1310.     event SelectionChanged;
  1311.     event SelectionChanging;
  1312.     }
  1313. interface System.ComponentModel.Design.ITypeDescriptorFilterService : 
  1314.     {
  1315.      Boolean FilterAttributes( Class System.ComponentModel.IComponent component,  Class System.Collections.IDictionary attributes);
  1316.      Boolean FilterEvents( Class System.ComponentModel.IComponent component,  Class System.Collections.IDictionary events);
  1317.      Boolean FilterProperties( Class System.ComponentModel.IComponent component,  Class System.Collections.IDictionary properties);
  1318.     }
  1319. interface System.ComponentModel.Design.ITypeResolutionService : 
  1320.     {
  1321.      Class System.Reflection.Assembly GetAssembly( Class System.Reflection.AssemblyName name);
  1322.      Class System.Reflection.Assembly GetAssembly( Class System.Reflection.AssemblyName name,  Boolean throwOnError);
  1323.      Class System.Type GetType( String name);
  1324.      Class System.Type GetType( String name,  Boolean throwOnError);
  1325.      Class System.Type GetType( String name,  Boolean throwOnError,  Boolean ignoreCase);
  1326.      Void ReferenceAssembly( Class System.Reflection.AssemblyName name);
  1327.      String GetPathOfAssembly( Class System.Reflection.AssemblyName name);
  1328.     }
  1329. class System.ComponentModel.NotifyParentPropertyAttribute : System.Attribute
  1330.     {
  1331.      Class System.ComponentModel.NotifyParentPropertyAttribute Yes;
  1332.      Class System.ComponentModel.NotifyParentPropertyAttribute No;
  1333.      Class System.ComponentModel.NotifyParentPropertyAttribute Default;
  1334.      Boolean notifyParent;
  1335.      Void System.ComponentModel.NotifyParentPropertyAttribute( Boolean notifyParent);
  1336.      Boolean get_NotifyParent();
  1337.      Boolean Equals( Object obj);
  1338.      I4 GetHashCode();
  1339.      Boolean IsDefaultAttribute();
  1340.      Void System.ComponentModel.NotifyParentPropertyAttribute();
  1341.     property NotifyParent { get(){} set(){} };
  1342.     }
  1343. class System.ComponentModel.ParenthesizePropertyNameAttribute : System.Attribute
  1344.     {
  1345.      Class System.ComponentModel.ParenthesizePropertyNameAttribute Default;
  1346.      Boolean needParenthesis;
  1347.      Void System.ComponentModel.ParenthesizePropertyNameAttribute();
  1348.      Void System.ComponentModel.ParenthesizePropertyNameAttribute( Boolean needParenthesis);
  1349.      Boolean get_NeedParenthesis();
  1350.      Boolean Equals( Object o);
  1351.      I4 GetHashCode();
  1352.      Boolean IsDefaultAttribute();
  1353.      Void System.ComponentModel.ParenthesizePropertyNameAttribute();
  1354.     property NeedParenthesis { get(){} set(){} };
  1355.     }
  1356. class System.ComponentModel.PropertyTabAttribute : System.Attribute
  1357.     {
  1358.      SZArray ValueClass System.ComponentModel.PropertyTabScope tabScopes;
  1359.      SZArray Class System.Type tabClasses;
  1360.      SZArray String tabClassNames;
  1361.      Void System.ComponentModel.PropertyTabAttribute();
  1362.      Void System.ComponentModel.PropertyTabAttribute( Class System.Type tabClass);
  1363.      Void System.ComponentModel.PropertyTabAttribute( String tabClassName);
  1364.      Void System.ComponentModel.PropertyTabAttribute( Class System.Type tabClass,  ValueClass System.ComponentModel.PropertyTabScope tabScope);
  1365.      Void System.ComponentModel.PropertyTabAttribute( String tabClassName,  ValueClass System.ComponentModel.PropertyTabScope tabScope);
  1366.      SZArray Class System.Type get_TabClasses();
  1367.      SZArray String get_TabClassNames();
  1368.      SZArray ValueClass System.ComponentModel.PropertyTabScope get_TabScopes();
  1369.      Boolean Equals( Object other);
  1370.      Boolean Equals( Class System.ComponentModel.PropertyTabAttribute other);
  1371.      I4 GetHashCode();
  1372.      Void InitializeArrays( SZArray String tabClassNames,  SZArray ValueClass System.ComponentModel.PropertyTabScope tabScopes);
  1373.      Void InitializeArrays( SZArray Class System.Type tabClasses,  SZArray ValueClass System.ComponentModel.PropertyTabScope tabScopes);
  1374.      Void InitializeArrays( SZArray String tabClassNames,  SZArray Class System.Type tabClasses,  SZArray ValueClass System.ComponentModel.PropertyTabScope tabScopes);
  1375.     property TabClasses { get(){} set(){} };
  1376.     property TabClassNames { get(){} set(){} };
  1377.     property TabScopes { get(){} set(){} };
  1378.     }
  1379. class System.ComponentModel.PropertyTabScope : System.Enum
  1380.     {
  1381.      I4 value__;
  1382.      ValueClass System.ComponentModel.PropertyTabScope Static;
  1383.      ValueClass System.ComponentModel.PropertyTabScope Global;
  1384.      ValueClass System.ComponentModel.PropertyTabScope Document;
  1385.      ValueClass System.ComponentModel.PropertyTabScope Component;
  1386.     }
  1387. class System.ComponentModel.RefreshProperties : System.Enum
  1388.     {
  1389.      I4 value__;
  1390.      ValueClass System.ComponentModel.RefreshProperties None;
  1391.      ValueClass System.ComponentModel.RefreshProperties All;
  1392.      ValueClass System.ComponentModel.RefreshProperties Repaint;
  1393.     }
  1394. class System.ComponentModel.RefreshPropertiesAttribute : System.Attribute
  1395.     {
  1396.      Class System.ComponentModel.RefreshPropertiesAttribute All;
  1397.      Class System.ComponentModel.RefreshPropertiesAttribute Repaint;
  1398.      Class System.ComponentModel.RefreshPropertiesAttribute Default;
  1399.      ValueClass System.ComponentModel.RefreshProperties refresh;
  1400.      Void System.ComponentModel.RefreshPropertiesAttribute( ValueClass System.ComponentModel.RefreshProperties refresh);
  1401.      ValueClass System.ComponentModel.RefreshProperties get_RefreshProperties();
  1402.      Boolean Equals( Object value);
  1403.      I4 GetHashCode();
  1404.      Boolean IsDefaultAttribute();
  1405.      Void System.ComponentModel.RefreshPropertiesAttribute();
  1406.     property RefreshProperties { get(){} set(){} };
  1407.     }
  1408. class System.ComponentModel.Design.SelectionTypes : System.Enum
  1409.     {
  1410.      I4 value__;
  1411.      ValueClass System.ComponentModel.Design.SelectionTypes Normal;
  1412.      ValueClass System.ComponentModel.Design.SelectionTypes Replace;
  1413.      ValueClass System.ComponentModel.Design.SelectionTypes MouseDown;
  1414.      ValueClass System.ComponentModel.Design.SelectionTypes MouseUp;
  1415.      ValueClass System.ComponentModel.Design.SelectionTypes Click;
  1416.      ValueClass System.ComponentModel.Design.SelectionTypes Valid;
  1417.     }
  1418. class System.ComponentModel.Design.ServiceCreatorCallback : System.MulticastDelegate
  1419.     {
  1420.      Void System.ComponentModel.Design.ServiceCreatorCallback( Object object,  I method);
  1421.      Object Invoke( Class System.ComponentModel.Design.IServiceContainer container,  Class System.Type serviceType);
  1422.      Class System.IAsyncResult BeginInvoke( Class System.ComponentModel.Design.IServiceContainer container,  Class System.Type serviceType,  Class System.AsyncCallback callback,  Object object);
  1423.      Object EndInvoke( Class System.IAsyncResult result);
  1424.     }
  1425. class System.ComponentModel.Design.ServiceContainer : System.Object
  1426.     {
  1427.      Class System.Collections.Hashtable services;
  1428.      Class System.IServiceProvider parentProvider;
  1429.      Class System.Diagnostics.TraceSwitch TRACESERVICE;
  1430.      Void System.ComponentModel.Design.ServiceContainer();
  1431.      Void System.ComponentModel.Design.ServiceContainer( Class System.IServiceProvider parentProvider);
  1432.      Class System.ComponentModel.Design.IServiceContainer get_Container();
  1433.      Class System.Collections.Hashtable get_Services();
  1434.      Void AddService( Class System.Type serviceType,  Object serviceInstance);
  1435.      Void AddService( Class System.Type serviceType,  Object serviceInstance,  Boolean promote);
  1436.      Void AddService( Class System.Type serviceType,  Class System.ComponentModel.Design.ServiceCreatorCallback callback);
  1437.      Void AddService( Class System.Type serviceType,  Class System.ComponentModel.Design.ServiceCreatorCallback callback,  Boolean promote);
  1438.      Object GetService( Class System.Type serviceType);
  1439.      Void RemoveService( Class System.Type serviceType);
  1440.      Void RemoveService( Class System.Type serviceType,  Boolean promote);
  1441.      Void System.ComponentModel.Design.ServiceContainer();
  1442.     property Container { get(){} set(){} };
  1443.     property Services { get(){} set(){} };
  1444.     }
  1445. class System.ComponentModel.ToolboxItemAttribute : System.Attribute
  1446.     {
  1447.      Class System.Type toolboxItemType;
  1448.      String toolboxItemTypeName;
  1449.      Class System.ComponentModel.ToolboxItemAttribute Default;
  1450.      Class System.ComponentModel.ToolboxItemAttribute None;
  1451.      Boolean IsDefaultAttribute();
  1452.      Void System.ComponentModel.ToolboxItemAttribute( Boolean defaultType);
  1453.      Void System.ComponentModel.ToolboxItemAttribute( String toolboxItemTypeName);
  1454.      Void System.ComponentModel.ToolboxItemAttribute( Class System.Type toolboxItemType);
  1455.      Class System.Type get_ToolboxItemType();
  1456.      String get_ToolboxItemTypeName();
  1457.      Boolean Equals( Object obj);
  1458.      I4 GetHashCode();
  1459.      Void System.ComponentModel.ToolboxItemAttribute();
  1460.     property ToolboxItemType { get(){} set(){} };
  1461.     property ToolboxItemTypeName { get(){} set(){} };
  1462.     }
  1463. class System.ComponentModel.Design.ViewTechnology : System.Enum
  1464.     {
  1465.      I4 value__;
  1466.      ValueClass System.ComponentModel.Design.ViewTechnology Passthrough;
  1467.      ValueClass System.ComponentModel.Design.ViewTechnology WindowsForms;
  1468.     }
  1469. class System.ComponentModel.Design.ActiveDesignerEventArgs : System.EventArgs
  1470.     {
  1471.      Class System.ComponentModel.Design.IDesignerHost oldDesigner;
  1472.      Class System.ComponentModel.Design.IDesignerHost newDesigner;
  1473.      Void System.ComponentModel.Design.ActiveDesignerEventArgs( Class System.ComponentModel.Design.IDesignerHost oldDesigner,  Class System.ComponentModel.Design.IDesignerHost newDesigner);
  1474.      Class System.ComponentModel.Design.IDesignerHost get_OldDesigner();
  1475.      Class System.ComponentModel.Design.IDesignerHost get_NewDesigner();
  1476.     property OldDesigner { get(){} set(){} };
  1477.     property NewDesigner { get(){} set(){} };
  1478.     }
  1479. class System.ComponentModel.Design.CheckoutException : System.Runtime.InteropServices.ExternalException
  1480.     {
  1481.      Class System.ComponentModel.Design.CheckoutException Canceled;
  1482.      Void System.ComponentModel.Design.CheckoutException();
  1483.      Void System.ComponentModel.Design.CheckoutException( String message);
  1484.      Void System.ComponentModel.Design.CheckoutException( String message,  I4 errorCode);
  1485.      Void System.ComponentModel.Design.CheckoutException();
  1486.     }
  1487. class System.ComponentModel.Design.CommandID : System.Object
  1488.     {
  1489.      ValueClass System.Guid menuGroup;
  1490.      I4 commandID;
  1491.      Void System.ComponentModel.Design.CommandID( ValueClass System.Guid menuGroup,  I4 commandID);
  1492.      I4 get_ID();
  1493.      Boolean Equals( Object obj);
  1494.      I4 GetHashCode();
  1495.      ValueClass System.Guid get_Guid();
  1496.      String ToString();
  1497.     property ID { get(){} set(){} };
  1498.     property Guid { get(){} set(){} };
  1499.     }
  1500. class System.ComponentModel.Design.ComponentChangedEventArgs : System.EventArgs
  1501.     {
  1502.      Object component;
  1503.      Class System.ComponentModel.MemberDescriptor member;
  1504.      Object oldValue;
  1505.      Object newValue;
  1506.      Object get_Component();
  1507.      Class System.ComponentModel.MemberDescriptor get_Member();
  1508.      Object get_NewValue();
  1509.      Object get_OldValue();
  1510.      Void System.ComponentModel.Design.ComponentChangedEventArgs( Object component,  Class System.ComponentModel.MemberDescriptor member,  Object oldValue,  Object newValue);
  1511.     property Component { get(){} set(){} };
  1512.     property Member { get(){} set(){} };
  1513.     property NewValue { get(){} set(){} };
  1514.     property OldValue { get(){} set(){} };
  1515.     }
  1516. class System.ComponentModel.Design.ComponentChangingEventArgs : System.EventArgs
  1517.     {
  1518.      Object component;
  1519.      Class System.ComponentModel.MemberDescriptor member;
  1520.      Object get_Component();
  1521.      Class System.ComponentModel.MemberDescriptor get_Member();
  1522.      Void System.ComponentModel.Design.ComponentChangingEventArgs( Object component,  Class System.ComponentModel.MemberDescriptor member);
  1523.     property Component { get(){} set(){} };
  1524.     property Member { get(){} set(){} };
  1525.     }
  1526. class System.ComponentModel.Design.ComponentEventArgs : System.EventArgs
  1527.     {
  1528.      Class System.ComponentModel.IComponent component;
  1529.      Class System.ComponentModel.IComponent get_Component();
  1530.      Void System.ComponentModel.Design.ComponentEventArgs( Class System.ComponentModel.IComponent component);
  1531.     property Component { get(){} set(){} };
  1532.     }
  1533. class System.ComponentModel.Design.ComponentRenameEventArgs : System.EventArgs
  1534.     {
  1535.      Object component;
  1536.      String oldName;
  1537.      String newName;
  1538.      Object get_Component();
  1539.      String get_OldName();
  1540.      String get_NewName();
  1541.      Void System.ComponentModel.Design.ComponentRenameEventArgs( Object component,  String oldName,  String newName);
  1542.     property Component { get(){} set(){} };
  1543.     property OldName { get(){} set(){} };
  1544.     property NewName { get(){} set(){} };
  1545.     }
  1546. class System.ComponentModel.Design.DesignerTransaction : System.Object
  1547.     {
  1548.      Boolean committed;
  1549.      Boolean canceled;
  1550.      Boolean suppressedFinalization;
  1551.      String desc;
  1552.      Void System.ComponentModel.Design.DesignerTransaction();
  1553.      Void System.ComponentModel.Design.DesignerTransaction( String description);
  1554.      Boolean get_Canceled();
  1555.      Boolean get_Committed();
  1556.      String get_Description();
  1557.      Void Cancel();
  1558.      Void Commit();
  1559.      Void OnCancel();
  1560.      Void OnCommit();
  1561.      Void Finalize();
  1562.      Void System.IDisposable.Dispose();
  1563.      Void Dispose( Boolean disposing);
  1564.     property Canceled { get(){} set(){} };
  1565.     property Committed { get(){} set(){} };
  1566.     property Description { get(){} set(){} };
  1567.     }
  1568. class System.ComponentModel.Design.DesignerTransactionCloseEventArgs : System.EventArgs
  1569.     {
  1570.      Boolean commit;
  1571.      Void System.ComponentModel.Design.DesignerTransactionCloseEventArgs( Boolean commit);
  1572.      Boolean get_TransactionCommitted();
  1573.     property TransactionCommitted { get(){} set(){} };
  1574.     }
  1575. class System.ComponentModel.Design.MenuCommand : System.Object
  1576.     {
  1577.      I4 ENABLED;
  1578.      I4 INVISIBLE;
  1579.      I4 CHECKED;
  1580.      I4 SUPPORTED;
  1581.      Class System.EventHandler execHandler;
  1582.      Class System.EventHandler statusHandler;
  1583.      Class System.ComponentModel.Design.CommandID commandID;
  1584.      I4 status;
  1585.      Void System.ComponentModel.Design.MenuCommand( Class System.EventHandler handler,  Class System.ComponentModel.Design.CommandID command);
  1586.      Boolean get_Checked();
  1587.      Void set_Checked( Boolean value);
  1588.      Boolean get_Enabled();
  1589.      Void set_Enabled( Boolean value);
  1590.      Void SetStatus( I4 mask,  Boolean value);
  1591.      Boolean get_Supported();
  1592.      Void set_Supported( Boolean value);
  1593.      Boolean get_Visible();
  1594.      Void set_Visible( Boolean value);
  1595.      Void add_CommandChanged( Class System.EventHandler value);
  1596.      Void remove_CommandChanged( Class System.EventHandler value);
  1597.      Class System.ComponentModel.Design.CommandID get_CommandID();
  1598.      Void Invoke();
  1599.      I4 get_OleStatus();
  1600.      Void OnCommandChanged( Class System.EventArgs e);
  1601.      String ToString();
  1602.     property Checked { get(){} set(){} };
  1603.     property Enabled { get(){} set(){} };
  1604.     property Supported { get(){} set(){} };
  1605.     property Visible { get(){} set(){} };
  1606.     property CommandID { get(){} set(){} };
  1607.     property OleStatus { get(){} set(){} };
  1608.     event CommandChanged;
  1609.     }
  1610. class System.ComponentModel.Design.DesignerVerb : System.ComponentModel.Design.MenuCommand
  1611.     {
  1612.      String text;
  1613.      Void System.ComponentModel.Design.DesignerVerb( String text,  Class System.EventHandler handler);
  1614.      Void System.ComponentModel.Design.DesignerVerb( String text,  Class System.EventHandler handler,  Class System.ComponentModel.Design.CommandID startCommandID);
  1615.      String get_Text();
  1616.      String ToString();
  1617.     property Text { get(){} set(){} };
  1618.     }
  1619. class System.ComponentModel.Design.DesignerVerbCollection : System.Collections.CollectionBase
  1620.     {
  1621.      Void System.ComponentModel.Design.DesignerVerbCollection();
  1622.      Void System.ComponentModel.Design.DesignerVerbCollection( SZArray Class System.ComponentModel.Design.DesignerVerb value);
  1623.      Class System.ComponentModel.Design.DesignerVerb get_Item( I4 index);
  1624.      Void set_Item( I4 index,  Class System.ComponentModel.Design.DesignerVerb value);
  1625.      I4 Add( Class System.ComponentModel.Design.DesignerVerb value);
  1626.      Void AddRange( SZArray Class System.ComponentModel.Design.DesignerVerb value);
  1627.      Void AddRange( Class System.ComponentModel.Design.DesignerVerbCollection value);
  1628.      Void Insert( I4 index,  Class System.ComponentModel.Design.DesignerVerb value);
  1629.      I4 IndexOf( Class System.ComponentModel.Design.DesignerVerb value);
  1630.      Boolean Contains( Class System.ComponentModel.Design.DesignerVerb value);
  1631.      Void Remove( Class System.ComponentModel.Design.DesignerVerb value);
  1632.      Void CopyTo( SZArray Class System.ComponentModel.Design.DesignerVerb array,  I4 index);
  1633.      Void OnSet( I4 index,  Object oldValue,  Object newValue);
  1634.      Void OnInsert( I4 index,  Object value);
  1635.      Void OnClear();
  1636.      Void OnRemove( I4 index,  Object value);
  1637.      Void OnValidate( Object value);
  1638.     property Item { get(){} set(){} };
  1639.     }
  1640. class System.ComponentModel.Design.DesigntimeLicenseContext : System.ComponentModel.LicenseContext
  1641.     {
  1642.      Class System.Collections.Hashtable savedLicenseKeys;
  1643.      ValueClass System.ComponentModel.LicenseUsageMode get_UsageMode();
  1644.      String GetSavedLicenseKey( Class System.Type type,  Class System.Reflection.Assembly resourceAssembly);
  1645.      Void SetSavedLicenseKey( Class System.Type type,  String key);
  1646.      Void System.ComponentModel.Design.DesigntimeLicenseContext();
  1647.     property UsageMode { get(){} set(){} };
  1648.     }
  1649. class System.ComponentModel.Design.RuntimeLicenseContext : System.ComponentModel.LicenseContext
  1650.     {
  1651.      I4 ReadBlock;
  1652.      Class System.Collections.Hashtable savedLicenseKeys;
  1653.      String GetSavedLicenseKey( Class System.Type type,  Class System.Reflection.Assembly resourceAssembly);
  1654.      Class System.IO.Stream OpenRead( Class System.Uri resourceUri);
  1655.      Void System.ComponentModel.Design.RuntimeLicenseContext();
  1656.     }
  1657. class System.ComponentModel.Design.DesignerCollection : System.Object
  1658.     {
  1659.      Class System.Collections.IList designers;
  1660.      Void System.ComponentModel.Design.DesignerCollection( SZArray Class System.ComponentModel.Design.IDesignerHost designers);
  1661.      Void System.ComponentModel.Design.DesignerCollection( Class System.Collections.IList designers);
  1662.      I4 get_Count();
  1663.      Class System.ComponentModel.Design.IDesignerHost get_Item( I4 index);
  1664.      Class System.Collections.IEnumerator GetEnumerator();
  1665.      I4 System.Collections.ICollection.get_Count();
  1666.      Boolean System.Collections.ICollection.get_IsSynchronized();
  1667.      Object System.Collections.ICollection.get_SyncRoot();
  1668.      Void System.Collections.ICollection.CopyTo( Class System.Array array,  I4 index);
  1669.      Class System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator();
  1670.     property Count { get(){} set(){} };
  1671.     property Item { get(){} set(){} };
  1672.     }
  1673. class System.ComponentModel.Design.DesignerEventArgs : System.EventArgs
  1674.     {
  1675.      Class System.ComponentModel.Design.IDesignerHost host;
  1676.      Void System.ComponentModel.Design.DesignerEventArgs( Class System.ComponentModel.Design.IDesignerHost host);
  1677.      Class System.ComponentModel.Design.IDesignerHost get_Designer();
  1678.     property Designer { get(){} set(){} };
  1679.     }
  1680. class System.ComponentModel.Design.StandardCommands : System.Object
  1681.     {
  1682.      I4 cmdidDesignerVerbFirst;
  1683.      I4 cmdidDesignerVerbLast;
  1684.      I4 cmdidArrangeIcons;
  1685.      I4 cmdidLineupIcons;
  1686.      I4 cmdidShowLargeIcons;
  1687.      ValueClass System.Guid standardCommandSet;
  1688.      ValueClass System.Guid ndpCommandSet;
  1689.      Class System.ComponentModel.Design.CommandID AlignBottom;
  1690.      Class System.ComponentModel.Design.CommandID AlignHorizontalCenters;
  1691.      Class System.ComponentModel.Design.CommandID AlignLeft;
  1692.      Class System.ComponentModel.Design.CommandID AlignRight;
  1693.      Class System.ComponentModel.Design.CommandID AlignToGrid;
  1694.      Class System.ComponentModel.Design.CommandID AlignTop;
  1695.      Class System.ComponentModel.Design.CommandID AlignVerticalCenters;
  1696.      Class System.ComponentModel.Design.CommandID ArrangeBottom;
  1697.      Class System.ComponentModel.Design.CommandID ArrangeRight;
  1698.      Class System.ComponentModel.Design.CommandID BringForward;
  1699.      Class System.ComponentModel.Design.CommandID BringToFront;
  1700.      Class System.ComponentModel.Design.CommandID CenterHorizontally;
  1701.      Class System.ComponentModel.Design.CommandID CenterVertically;
  1702.      Class System.ComponentModel.Design.CommandID Copy;
  1703.      Class System.ComponentModel.Design.CommandID Cut;
  1704.      Class System.ComponentModel.Design.CommandID Delete;
  1705.      Class System.ComponentModel.Design.CommandID Group;
  1706.      Class System.ComponentModel.Design.CommandID HorizSpaceConcatenate;
  1707.      Class System.ComponentModel.Design.CommandID HorizSpaceDecrease;
  1708.      Class System.ComponentModel.Design.CommandID HorizSpaceIncrease;
  1709.      Class System.ComponentModel.Design.CommandID HorizSpaceMakeEqual;
  1710.      Class System.ComponentModel.Design.CommandID Paste;
  1711.      Class System.ComponentModel.Design.CommandID Properties;
  1712.      Class System.ComponentModel.Design.CommandID Redo;
  1713.      Class System.ComponentModel.Design.CommandID MultiLevelRedo;
  1714.      Class System.ComponentModel.Design.CommandID SelectAll;
  1715.      Class System.ComponentModel.Design.CommandID SendBackward;
  1716.      Class System.ComponentModel.Design.CommandID SendToBack;
  1717.      Class System.ComponentModel.Design.CommandID SizeToControl;
  1718.      Class System.ComponentModel.Design.CommandID SizeToControlHeight;
  1719.      Class System.ComponentModel.Design.CommandID SizeToControlWidth;
  1720.      Class System.ComponentModel.Design.CommandID SizeToFit;
  1721.      Class System.ComponentModel.Design.CommandID SizeToGrid;
  1722.      Class System.ComponentModel.Design.CommandID SnapToGrid;
  1723.      Class System.ComponentModel.Design.CommandID TabOrder;
  1724.      Class System.ComponentModel.Design.CommandID Undo;
  1725.      Class System.ComponentModel.Design.CommandID MultiLevelUndo;
  1726.      Class System.ComponentModel.Design.CommandID Ungroup;
  1727.      Class System.ComponentModel.Design.CommandID VertSpaceConcatenate;
  1728.      Class System.ComponentModel.Design.CommandID VertSpaceDecrease;
  1729.      Class System.ComponentModel.Design.CommandID VertSpaceIncrease;
  1730.      Class System.ComponentModel.Design.CommandID VertSpaceMakeEqual;
  1731.      Class System.ComponentModel.Design.CommandID ShowGrid;
  1732.      Class System.ComponentModel.Design.CommandID ViewGrid;
  1733.      Class System.ComponentModel.Design.CommandID Replace;
  1734.      Class System.ComponentModel.Design.CommandID PropertiesWindow;
  1735.      Class System.ComponentModel.Design.CommandID LockControls;
  1736.      Class System.ComponentModel.Design.CommandID F1Help;
  1737.      Class System.ComponentModel.Design.CommandID ArrangeIcons;
  1738.      Class System.ComponentModel.Design.CommandID LineupIcons;
  1739.      Class System.ComponentModel.Design.CommandID ShowLargeIcons;
  1740.      Class System.ComponentModel.Design.CommandID VerbFirst;
  1741.      Class System.ComponentModel.Design.CommandID VerbLast;
  1742.      Void System.ComponentModel.Design.StandardCommands();
  1743.      Void System.ComponentModel.Design.StandardCommands();
  1744.     }
  1745. class VSStandardCommands : System.Object
  1746.     {
  1747.      I4 cmdidAlignBottom;
  1748.      I4 cmdidAlignHorizontalCenters;
  1749.      I4 cmdidAlignLeft;
  1750.      I4 cmdidAlignRight;
  1751.      I4 cmdidAlignToGrid;
  1752.      I4 cmdidAlignTop;
  1753.      I4 cmdidAlignVerticalCenters;
  1754.      I4 cmdidArrangeBottom;
  1755.      I4 cmdidArrangeRight;
  1756.      I4 cmdidBringForward;
  1757.      I4 cmdidBringToFront;
  1758.      I4 cmdidCenterHorizontally;
  1759.      I4 cmdidCenterVertically;
  1760.      I4 cmdidCode;
  1761.      I4 cmdidCopy;
  1762.      I4 cmdidCut;
  1763.      I4 cmdidDelete;
  1764.      I4 cmdidFontName;
  1765.      I4 cmdidFontSize;
  1766.      I4 cmdidGroup;
  1767.      I4 cmdidHorizSpaceConcatenate;
  1768.      I4 cmdidHorizSpaceDecrease;
  1769.      I4 cmdidHorizSpaceIncrease;
  1770.      I4 cmdidHorizSpaceMakeEqual;
  1771.      I4 cmdidLockControls;
  1772.      I4 cmdidInsertObject;
  1773.      I4 cmdidPaste;
  1774.      I4 cmdidPrint;
  1775.      I4 cmdidProperties;
  1776.      I4 cmdidRedo;
  1777.      I4 cmdidMultiLevelRedo;
  1778.      I4 cmdidSelectAll;
  1779.      I4 cmdidSendBackward;
  1780.      I4 cmdidSendToBack;
  1781.      I4 cmdidShowTable;
  1782.      I4 cmdidSizeToControl;
  1783.      I4 cmdidSizeToControlHeight;
  1784.      I4 cmdidSizeToControlWidth;
  1785.      I4 cmdidSizeToFit;
  1786.      I4 cmdidSizeToGrid;
  1787.      I4 cmdidSnapToGrid;
  1788.      I4 cmdidTabOrder;
  1789.      I4 cmdidToolbox;
  1790.      I4 cmdidUndo;
  1791.      I4 cmdidMultiLevelUndo;
  1792.      I4 cmdidUngroup;
  1793.      I4 cmdidVertSpaceConcatenate;
  1794.      I4 cmdidVertSpaceDecrease;
  1795.      I4 cmdidVertSpaceIncrease;
  1796.      I4 cmdidVertSpaceMakeEqual;
  1797.      I4 cmdidZoomPercent;
  1798.      I4 cmdidBackColor;
  1799.      I4 cmdidBold;
  1800.      I4 cmdidBorderColor;
  1801.      I4 cmdidBorderDashDot;
  1802.      I4 cmdidBorderDashDotDot;
  1803.      I4 cmdidBorderDashes;
  1804.      I4 cmdidBorderDots;
  1805.      I4 cmdidBorderShortDashes;
  1806.      I4 cmdidBorderSolid;
  1807.      I4 cmdidBorderSparseDots;
  1808.      I4 cmdidBorderWidth1;
  1809.      I4 cmdidBorderWidth2;
  1810.      I4 cmdidBorderWidth3;
  1811.      I4 cmdidBorderWidth4;
  1812.      I4 cmdidBorderWidth5;
  1813.      I4 cmdidBorderWidth6;
  1814.      I4 cmdidBorderWidthHairline;
  1815.      I4 cmdidFlat;
  1816.      I4 cmdidForeColor;
  1817.      I4 cmdidItalic;
  1818.      I4 cmdidJustifyCenter;
  1819.      I4 cmdidJustifyGeneral;
  1820.      I4 cmdidJustifyLeft;
  1821.      I4 cmdidJustifyRight;
  1822.      I4 cmdidRaised;
  1823.      I4 cmdidSunken;
  1824.      I4 cmdidUnderline;
  1825.      I4 cmdidChiseled;
  1826.      I4 cmdidEtched;
  1827.      I4 cmdidShadowed;
  1828.      I4 cmdidCompDebug1;
  1829.      I4 cmdidCompDebug2;
  1830.      I4 cmdidCompDebug3;
  1831.      I4 cmdidCompDebug4;
  1832.      I4 cmdidCompDebug5;
  1833.      I4 cmdidCompDebug6;
  1834.      I4 cmdidCompDebug7;
  1835.      I4 cmdidCompDebug8;
  1836.      I4 cmdidCompDebug9;
  1837.      I4 cmdidCompDebug10;
  1838.      I4 cmdidCompDebug11;
  1839.      I4 cmdidCompDebug12;
  1840.      I4 cmdidCompDebug13;
  1841.      I4 cmdidCompDebug14;
  1842.      I4 cmdidCompDebug15;
  1843.      I4 cmdidExistingSchemaEdit;
  1844.      I4 cmdidFind;
  1845.      I4 cmdidGetZoom;
  1846.      I4 cmdidQueryOpenDesign;
  1847.      I4 cmdidQueryOpenNew;
  1848.      I4 cmdidSingleTableDesign;
  1849.      I4 cmdidSingleTableNew;
  1850.      I4 cmdidShowGrid;
  1851.      I4 cmdidNewTable;
  1852.      I4 cmdidCollapsedView;
  1853.      I4 cmdidFieldView;
  1854.      I4 cmdidVerifySQL;
  1855.      I4 cmdidHideTable;
  1856.      I4 cmdidPrimaryKey;
  1857.      I4 cmdidSave;
  1858.      I4 cmdidSaveAs;
  1859.      I4 cmdidSortAscending;
  1860.      I4 cmdidSortDescending;
  1861.      I4 cmdidAppendQuery;
  1862.      I4 cmdidCrosstabQuery;
  1863.      I4 cmdidDeleteQuery;
  1864.      I4 cmdidMakeTableQuery;
  1865.      I4 cmdidSelectQuery;
  1866.      I4 cmdidUpdateQuery;
  1867.      I4 cmdidParameters;
  1868.      I4 cmdidTotals;
  1869.      I4 cmdidViewCollapsed;
  1870.      I4 cmdidViewFieldList;
  1871.      I4 cmdidViewKeys;
  1872.      I4 cmdidViewGrid;
  1873.      I4 cmdidInnerJoin;
  1874.      I4 cmdidRightOuterJoin;
  1875.      I4 cmdidLeftOuterJoin;
  1876.      I4 cmdidFullOuterJoin;
  1877.      I4 cmdidUnionJoin;
  1878.      I4 cmdidShowSQLPane;
  1879.      I4 cmdidShowGraphicalPane;
  1880.      I4 cmdidShowDataPane;
  1881.      I4 cmdidShowQBEPane;
  1882.      I4 cmdidSelectAllFields;
  1883.      I4 cmdidOLEObjectMenuButton;
  1884.      I4 cmdidObjectVerbList0;
  1885.      I4 cmdidObjectVerbList1;
  1886.      I4 cmdidObjectVerbList2;
  1887.      I4 cmdidObjectVerbList3;
  1888.      I4 cmdidObjectVerbList4;
  1889.      I4 cmdidObjectVerbList5;
  1890.      I4 cmdidObjectVerbList6;
  1891.      I4 cmdidObjectVerbList7;
  1892.      I4 cmdidObjectVerbList8;
  1893.      I4 cmdidObjectVerbList9;
  1894.      I4 cmdidConvertObject;
  1895.      I4 cmdidCustomControl;
  1896.      I4 cmdidCustomizeItem;
  1897.      I4 cmdidRename;
  1898.      I4 cmdidImport;
  1899.      I4 cmdidNewPage;
  1900.      I4 cmdidMove;
  1901.      I4 cmdidCancel;
  1902.      I4 cmdidFont;
  1903.      I4 cmdidExpandLinks;
  1904.      I4 cmdidExpandImages;
  1905.      I4 cmdidExpandPages;
  1906.      I4 cmdidRefocusDiagram;
  1907.      I4 cmdidTransitiveClosure;
  1908.      I4 cmdidCenterDiagram;
  1909.      I4 cmdidZoomIn;
  1910.      I4 cmdidZoomOut;
  1911.      I4 cmdidRemoveFilter;
  1912.      I4 cmdidHidePane;
  1913.      I4 cmdidDeleteTable;
  1914.      I4 cmdidDeleteRelationship;
  1915.      I4 cmdidRemove;
  1916.      I4 cmdidJoinLeftAll;
  1917.      I4 cmdidJoinRightAll;
  1918.      I4 cmdidAddToOutput;
  1919.      I4 cmdidOtherQuery;
  1920.      I4 cmdidGenerateChangeScript;
  1921.      I4 cmdidSaveSelection;
  1922.      I4 cmdidAutojoinCurrent;
  1923.      I4 cmdidAutojoinAlways;
  1924.      I4 cmdidEditPage;
  1925.      I4 cmdidViewLinks;
  1926.      I4 cmdidStop;
  1927.      I4 cmdidPause;
  1928.      I4 cmdidResume;
  1929.      I4 cmdidFilterDiagram;
  1930.      I4 cmdidShowAllObjects;
  1931.      I4 cmdidShowApplications;
  1932.      I4 cmdidShowOtherObjects;
  1933.      I4 cmdidShowPrimRelationships;
  1934.      I4 cmdidExpand;
  1935.      I4 cmdidCollapse;
  1936.      I4 cmdidRefresh;
  1937.      I4 cmdidLayout;
  1938.      I4 cmdidShowResources;
  1939.      I4 cmdidInsertHTMLWizard;
  1940.      I4 cmdidShowDownloads;
  1941.      I4 cmdidShowExternals;
  1942.      I4 cmdidShowInBoundLinks;
  1943.      I4 cmdidShowOutBoundLinks;
  1944.      I4 cmdidShowInAndOutBoundLinks;
  1945.      I4 cmdidPreview;
  1946.      I4 cmdidOpen;
  1947.      I4 cmdidOpenWith;
  1948.      I4 cmdidShowPages;
  1949.      I4 cmdidRunQuery;
  1950.      I4 cmdidClearQuery;
  1951.      I4 cmdidRecordFirst;
  1952.      I4 cmdidRecordLast;
  1953.      I4 cmdidRecordNext;
  1954.      I4 cmdidRecordPrevious;
  1955.      I4 cmdidRecordGoto;
  1956.      I4 cmdidRecordNew;
  1957.      I4 cmdidInsertNewMenu;
  1958.      I4 cmdidInsertSeparator;
  1959.      I4 cmdidEditMenuNames;
  1960.      I4 cmdidDebugExplorer;
  1961.      I4 cmdidDebugProcesses;
  1962.      I4 cmdidViewThreadsWindow;
  1963.      I4 cmdidWindowUIList;
  1964.      I4 cmdidNewProject;
  1965.      I4 cmdidOpenProject;
  1966.      I4 cmdidOpenSolution;
  1967.      I4 cmdidCloseSolution;
  1968.      I4 cmdidFileNew;
  1969.      I4 cmdidFileOpen;
  1970.      I4 cmdidFileClose;
  1971.      I4 cmdidSaveSolution;
  1972.      I4 cmdidSaveSolutionAs;
  1973.      I4 cmdidSaveProjectItemAs;
  1974.      I4 cmdidPageSetup;
  1975.      I4 cmdidPrintPreview;
  1976.      I4 cmdidExit;
  1977.      I4 cmdidReplace;
  1978.      I4 cmdidGoto;
  1979.      I4 cmdidPropertyPages;
  1980.      I4 cmdidFullScreen;
  1981.      I4 cmdidProjectExplorer;
  1982.      I4 cmdidPropertiesWindow;
  1983.      I4 cmdidTaskListWindow;
  1984.      I4 cmdidOutputWindow;
  1985.      I4 cmdidObjectBrowser;
  1986.      I4 cmdidDocOutlineWindow;
  1987.      I4 cmdidImmediateWindow;
  1988.      I4 cmdidWatchWindow;
  1989.      I4 cmdidLocalsWindow;
  1990.      I4 cmdidCallStack;
  1991.      I4 cmdidAutosWindow;
  1992.      I4 cmdidThisWindow;
  1993.      I4 cmdidAddNewItem;
  1994.      I4 cmdidAddExistingItem;
  1995.      I4 cmdidNewFolder;
  1996.      I4 cmdidSetStartupProject;
  1997.      I4 cmdidProjectSettings;
  1998.      I4 cmdidProjectReferences;
  1999.      I4 cmdidStepInto;
  2000.      I4 cmdidStepOver;
  2001.      I4 cmdidStepOut;
  2002.      I4 cmdidRunToCursor;
  2003.      I4 cmdidAddWatch;
  2004.      I4 cmdidEditWatch;
  2005.      I4 cmdidQuickWatch;
  2006.      I4 cmdidToggleBreakpoint;
  2007.      I4 cmdidClearBreakpoints;
  2008.      I4 cmdidShowBreakpoints;
  2009.      I4 cmdidSetNextStatement;
  2010.      I4 cmdidShowNextStatement;
  2011.      I4 cmdidEditBreakpoint;
  2012.      I4 cmdidDetachDebugger;
  2013.      I4 cmdidCustomizeKeyboard;
  2014.      I4 cmdidToolsOptions;
  2015.      I4 cmdidNewWindow;
  2016.      I4 cmdidSplit;
  2017.      I4 cmdidCascade;
  2018.      I4 cmdidTileHorz;
  2019.      I4 cmdidTileVert;
  2020.      I4 cmdidTechSupport;
  2021.      I4 cmdidAbout;
  2022.      I4 cmdidDebugOptions;
  2023.      I4 cmdidDeleteWatch;
  2024.      I4 cmdidCollapseWatch;
  2025.      I4 cmdidPbrsToggleStatus;
  2026.      I4 cmdidPropbrsHide;
  2027.      I4 cmdidDockingView;
  2028.      I4 cmdidHideActivePane;
  2029.      I4 cmdidPaneNextTab;
  2030.      I4 cmdidPanePrevTab;
  2031.      I4 cmdidPaneCloseToolWindow;
  2032.      I4 cmdidPaneActivateDocWindow;
  2033.      I4 cmdidDockingViewFloater;
  2034.      I4 cmdidAutoHideWindow;
  2035.      I4 cmdidMoveToDropdownBar;
  2036.      I4 cmdidFindCmd;
  2037.      I4 cmdidStart;
  2038.      I4 cmdidRestart;
  2039.      I4 cmdidAddinManager;
  2040.      I4 cmdidMultiLevelUndoList;
  2041.      I4 cmdidMultiLevelRedoList;
  2042.      I4 cmdidToolboxAddTab;
  2043.      I4 cmdidToolboxDeleteTab;
  2044.      I4 cmdidToolboxRenameTab;
  2045.      I4 cmdidToolboxTabMoveUp;
  2046.      I4 cmdidToolboxTabMoveDown;
  2047.      I4 cmdidToolboxRenameItem;
  2048.      I4 cmdidToolboxListView;
  2049.      I4 cmdidWindowUIGetList;
  2050.      I4 cmdidInsertValuesQuery;
  2051.      I4 cmdidShowProperties;
  2052.      I4 cmdidThreadSuspend;
  2053.      I4 cmdidThreadResume;
  2054.      I4 cmdidThreadSetFocus;
  2055.      I4 cmdidDisplayRadix;
  2056.      I4 cmdidOpenProjectItem;
  2057.      I4 cmdidPaneNextPane;
  2058.      I4 cmdidPanePrevPane;
  2059.      I4 cmdidClearPane;
  2060.      I4 cmdidGotoErrorTag;
  2061.      I4 cmdidTaskListSortByCategory;
  2062.      I4 cmdidTaskListSortByFileLine;
  2063.      I4 cmdidTaskListSortByPriority;
  2064.      I4 cmdidTaskListSortByDefaultSort;
  2065.      I4 cmdidTaskListFilterByNothing;
  2066.      I4 cmdidTaskListFilterByCategoryCodeSense;
  2067.      I4 cmdidTaskListFilterByCategoryCompiler;
  2068.      I4 cmdidTaskListFilterByCategoryComment;
  2069.      I4 cmdidToolboxAddItem;
  2070.      I4 cmdidToolboxReset;
  2071.      I4 cmdidSaveProjectItem;
  2072.      I4 cmdidViewForm;
  2073.      I4 cmdidViewCode;
  2074.      I4 cmdidPreviewInBrowser;
  2075.      I4 cmdidBrowseWith;
  2076.      I4 cmdidSearchSetCombo;
  2077.      I4 cmdidSearchCombo;
  2078.      I4 cmdidEditLabel;
  2079.      I4 cmdidExceptions;
  2080.      I4 cmdidDefineViews;
  2081.      I4 cmdidToggleSelMode;
  2082.      I4 cmdidToggleInsMode;
  2083.      I4 cmdidLoadUnloadedProject;
  2084.      I4 cmdidUnloadLoadedProject;
  2085.      I4 cmdidElasticColumn;
  2086.      I4 cmdidHideColumn;
  2087.      I4 cmdidTaskListPreviousView;
  2088.      I4 cmdidZoomDialog;
  2089.      I4 cmdidFindNew;
  2090.      I4 cmdidFindMatchCase;
  2091.      I4 cmdidFindWholeWord;
  2092.      I4 cmdidFindSimplePattern;
  2093.      I4 cmdidFindRegularExpression;
  2094.      I4 cmdidFindBackwards;
  2095.      I4 cmdidFindInSelection;
  2096.      I4 cmdidFindStop;
  2097.      I4 cmdidFindHelp;
  2098.      I4 cmdidFindInFiles;
  2099.      I4 cmdidReplaceInFiles;
  2100.      I4 cmdidNextLocation;
  2101.      I4 cmdidPreviousLocation;
  2102.      I4 cmdidTaskListNextError;
  2103.      I4 cmdidTaskListPrevError;
  2104.      I4 cmdidTaskListFilterByCategoryUser;
  2105.      I4 cmdidTaskListFilterByCategoryShortcut;
  2106.      I4 cmdidTaskListFilterByCategoryHTML;
  2107.      I4 cmdidTaskListFilterByCurrentFile;
  2108.      I4 cmdidTaskListFilterByChecked;
  2109.      I4 cmdidTaskListFilterByUnchecked;
  2110.      I4 cmdidTaskListSortByDescription;
  2111.      I4 cmdidTaskListSortByChecked;
  2112.      I4 cmdidStartNoDebug;
  2113.      I4 cmdidFindNext;
  2114.      I4 cmdidFindPrev;
  2115.      I4 cmdidFindSelectedNext;
  2116.      I4 cmdidFindSelectedPrev;
  2117.      I4 cmdidSearchGetList;
  2118.      I4 cmdidInsertBreakpoint;
  2119.      I4 cmdidEnableBreakpoint;
  2120.      I4 cmdidF1Help;
  2121.      I4 cmdidPropSheetOrProperties;
  2122.      I4 cmdidTshellStep;
  2123.      I4 cmdidTshellRun;
  2124.      I4 cmdidMarkerCmd0;
  2125.      I4 cmdidMarkerCmd1;
  2126.      I4 cmdidMarkerCmd2;
  2127.      I4 cmdidMarkerCmd3;
  2128.      I4 cmdidMarkerCmd4;
  2129.      I4 cmdidMarkerCmd5;
  2130.      I4 cmdidMarkerCmd6;
  2131.      I4 cmdidMarkerCmd7;
  2132.      I4 cmdidMarkerCmd8;
  2133.      I4 cmdidMarkerCmd9;
  2134.      I4 cmdidMarkerLast;
  2135.      I4 cmdidMarkerEnd;
  2136.      I4 cmdidReloadProject;
  2137.      I4 cmdidUnloadProject;
  2138.      I4 cmdidDetachAttachOutline;
  2139.      I4 cmdidShowHideOutline;
  2140.      I4 cmdidSyncOutline;
  2141.      I4 cmdidRunToCallstCursor;
  2142.      I4 cmdidNoCmdsAvailable;
  2143.      I4 cmdidContextWindow;
  2144.      I4 cmdidAlias;
  2145.      I4 cmdidGotoCommandLine;
  2146.      I4 cmdidEvaluateExpression;
  2147.      I4 cmdidImmediateMode;
  2148.      I4 cmdidEvaluateStatement;
  2149.      I4 cmdidFindResultWindow1;
  2150.      I4 cmdidFindResultWindow2;
  2151.      I4 cmdidWindow1;
  2152.      I4 cmdidWindow2;
  2153.      I4 cmdidWindow3;
  2154.      I4 cmdidWindow4;
  2155.      I4 cmdidWindow5;
  2156.      I4 cmdidWindow6;
  2157.      I4 cmdidWindow7;
  2158.      I4 cmdidWindow8;
  2159.      I4 cmdidWindow9;
  2160.      I4 cmdidWindow10;
  2161.      I4 cmdidWindow11;
  2162.      I4 cmdidWindow12;
  2163.      I4 cmdidWindow13;
  2164.      I4 cmdidWindow14;
  2165.      I4 cmdidWindow15;
  2166.      I4 cmdidWindow16;
  2167.      I4 cmdidWindow17;
  2168.      I4 cmdidWindow18;
  2169.      I4 cmdidWindow19;
  2170.      I4 cmdidWindow20;
  2171.      I4 cmdidWindow21;
  2172.      I4 cmdidWindow22;
  2173.      I4 cmdidWindow23;
  2174.      I4 cmdidWindow24;
  2175.      I4 cmdidWindow25;
  2176.      I4 cmdidMoreWindows;
  2177.      I4 cmdidTaskListTaskHelp;
  2178.      I4 cmdidClassView;
  2179.      I4 cmdidMRUProj1;
  2180.      I4 cmdidMRUProj2;
  2181.      I4 cmdidMRUProj3;
  2182.      I4 cmdidMRUProj4;
  2183.      I4 cmdidMRUProj5;
  2184.      I4 cmdidMRUProj6;
  2185.      I4 cmdidMRUProj7;
  2186.      I4 cmdidMRUProj8;
  2187.      I4 cmdidMRUProj9;
  2188.      I4 cmdidMRUProj10;
  2189.      I4 cmdidMRUProj11;
  2190.      I4 cmdidMRUProj12;
  2191.      I4 cmdidMRUProj13;
  2192.      I4 cmdidMRUProj14;
  2193.      I4 cmdidMRUProj15;
  2194.      I4 cmdidMRUProj16;
  2195.      I4 cmdidMRUProj17;
  2196.      I4 cmdidMRUProj18;
  2197.      I4 cmdidMRUProj19;
  2198.      I4 cmdidMRUProj20;
  2199.      I4 cmdidMRUProj21;
  2200.      I4 cmdidMRUProj22;
  2201.      I4 cmdidMRUProj23;
  2202.      I4 cmdidMRUProj24;
  2203.      I4 cmdidMRUProj25;
  2204.      I4 cmdidSplitNext;
  2205.      I4 cmdidSplitPrev;
  2206.      I4 cmdidCloseAllDocuments;
  2207.      I4 cmdidNextDocument;
  2208.      I4 cmdidPrevDocument;
  2209.      I4 cmdidTool1;
  2210.      I4 cmdidTool2;
  2211.      I4 cmdidTool3;
  2212.      I4 cmdidTool4;
  2213.      I4 cmdidTool5;
  2214.      I4 cmdidTool6;
  2215.      I4 cmdidTool7;
  2216.      I4 cmdidTool8;
  2217.      I4 cmdidTool9;
  2218.      I4 cmdidTool10;
  2219.      I4 cmdidTool11;
  2220.      I4 cmdidTool12;
  2221.      I4 cmdidTool13;
  2222.      I4 cmdidTool14;
  2223.      I4 cmdidTool15;
  2224.      I4 cmdidTool16;
  2225.      I4 cmdidTool17;
  2226.      I4 cmdidTool18;
  2227.      I4 cmdidTool19;
  2228.      I4 cmdidTool20;
  2229.      I4 cmdidTool21;
  2230.      I4 cmdidTool22;
  2231.      I4 cmdidTool23;
  2232.      I4 cmdidTool24;
  2233.      I4 cmdidExternalCommands;
  2234.      I4 cmdidPasteNextTBXCBItem;
  2235.      I4 cmdidToolboxShowAllTabs;
  2236.      I4 cmdidProjectDependencies;
  2237.      I4 cmdidCloseDocument;
  2238.      I4 cmdidToolboxSortItems;
  2239.      I4 cmdidViewBarView1;
  2240.      I4 cmdidViewBarView2;
  2241.      I4 cmdidViewBarView3;
  2242.      I4 cmdidViewBarView4;
  2243.      I4 cmdidViewBarView5;
  2244.      I4 cmdidViewBarView6;
  2245.      I4 cmdidViewBarView7;
  2246.      I4 cmdidViewBarView8;
  2247.      I4 cmdidViewBarView9;
  2248.      I4 cmdidViewBarView10;
  2249.      I4 cmdidViewBarView11;
  2250.      I4 cmdidViewBarView12;
  2251.      I4 cmdidViewBarView13;
  2252.      I4 cmdidViewBarView14;
  2253.      I4 cmdidViewBarView15;
  2254.      I4 cmdidViewBarView16;
  2255.      I4 cmdidViewBarView17;
  2256.      I4 cmdidViewBarView18;
  2257.      I4 cmdidViewBarView19;
  2258.      I4 cmdidViewBarView20;
  2259.      I4 cmdidViewBarView21;
  2260.      I4 cmdidViewBarView22;
  2261.      I4 cmdidViewBarView23;
  2262.      I4 cmdidViewBarView24;
  2263.      I4 cmdidSolutionCfg;
  2264.      I4 cmdidSolutionCfgGetList;
  2265.      I4 cmdidManageIndexes;
  2266.      I4 cmdidManageRelationships;
  2267.      I4 cmdidManageConstraints;
  2268.      I4 cmdidTaskListCustomView1;
  2269.      I4 cmdidTaskListCustomView2;
  2270.      I4 cmdidTaskListCustomView3;
  2271.      I4 cmdidTaskListCustomView4;
  2272.      I4 cmdidTaskListCustomView5;
  2273.      I4 cmdidTaskListCustomView6;
  2274.      I4 cmdidTaskListCustomView7;
  2275.      I4 cmdidTaskListCustomView8;
  2276.      I4 cmdidTaskListCustomView9;
  2277.      I4 cmdidTaskListCustomView10;
  2278.      I4 cmdidTaskListCustomView11;
  2279.      I4 cmdidTaskListCustomView12;
  2280.      I4 cmdidTaskListCustomView13;
  2281.      I4 cmdidTaskListCustomView14;
  2282.      I4 cmdidTaskListCustomView15;
  2283.      I4 cmdidTaskListCustomView16;
  2284.      I4 cmdidTaskListCustomView17;
  2285.      I4 cmdidTaskListCustomView18;
  2286.      I4 cmdidTaskListCustomView19;
  2287.      I4 cmdidTaskListCustomView20;
  2288.      I4 cmdidTaskListCustomView21;
  2289.      I4 cmdidTaskListCustomView22;
  2290.      I4 cmdidTaskListCustomView23;
  2291.      I4 cmdidTaskListCustomView24;
  2292.      I4 cmdidTaskListCustomView25;
  2293.      I4 cmdidTaskListCustomView26;
  2294.      I4 cmdidTaskListCustomView27;
  2295.      I4 cmdidTaskListCustomView28;
  2296.      I4 cmdidTaskListCustomView29;
  2297.      I4 cmdidTaskListCustomView30;
  2298.      I4 cmdidTaskListCustomView31;
  2299.      I4 cmdidTaskListCustomView32;
  2300.      I4 cmdidTaskListCustomView33;
  2301.      I4 cmdidTaskListCustomView34;
  2302.      I4 cmdidTaskListCustomView35;
  2303.      I4 cmdidTaskListCustomView36;
  2304.      I4 cmdidTaskListCustomView37;
  2305.      I4 cmdidTaskListCustomView38;
  2306.      I4 cmdidTaskListCustomView39;
  2307.      I4 cmdidTaskListCustomView40;
  2308.      I4 cmdidTaskListCustomView41;
  2309.      I4 cmdidTaskListCustomView42;
  2310.      I4 cmdidTaskListCustomView43;
  2311.      I4 cmdidTaskListCustomView44;
  2312.      I4 cmdidTaskListCustomView45;
  2313.      I4 cmdidTaskListCustomView46;
  2314.      I4 cmdidTaskListCustomView47;
  2315.      I4 cmdidTaskListCustomView48;
  2316.      I4 cmdidTaskListCustomView49;
  2317.      I4 cmdidTaskListCustomView50;
  2318.      I4 cmdidObjectSearch;
  2319.      I4 cmdidCommandWindow;
  2320.      I4 cmdidCommandWindowMarkMode;
  2321.      I4 cmdidLogCommandWindow;
  2322.      I4 cmdidShell;
  2323.      I4 cmdidSingleChar;
  2324.      I4 cmdidZeroOrMore;
  2325.      I4 cmdidOneOrMore;
  2326.      I4 cmdidBeginLine;
  2327.      I4 cmdidEndLine;
  2328.      I4 cmdidBeginWord;
  2329.      I4 cmdidEndWord;
  2330.      I4 cmdidCharInSet;
  2331.      I4 cmdidCharNotInSet;
  2332.      I4 cmdidOr;
  2333.      I4 cmdidEscape;
  2334.      I4 cmdidTagExp;
  2335.      I4 cmdidPatternMatchHelp;
  2336.      I4 cmdidRegExList;
  2337.      I4 cmdidDebugReserved1;
  2338.      I4 cmdidDebugReserved2;
  2339.      I4 cmdidDebugReserved3;
  2340.      I4 cmdidWildZeroOrMore;
  2341.      I4 cmdidWildSingleChar;
  2342.      I4 cmdidWildSingleDigit;
  2343.      I4 cmdidWildCharInSet;
  2344.      I4 cmdidWildCharNotInSet;
  2345.      I4 cmdidFindWhatText;
  2346.      I4 cmdidTaggedExp1;
  2347.      I4 cmdidTaggedExp2;
  2348.      I4 cmdidTaggedExp3;
  2349.      I4 cmdidTaggedExp4;
  2350.      I4 cmdidTaggedExp5;
  2351.      I4 cmdidTaggedExp6;
  2352.      I4 cmdidTaggedExp7;
  2353.      I4 cmdidTaggedExp8;
  2354.      I4 cmdidTaggedExp9;
  2355.      I4 cmdidEditorWidgetClick;
  2356.      I4 cmdidCmdWinUpdateAC;
  2357.      I4 cmdidSlnCfgMgr;
  2358.      I4 cmdidAddNewProject;
  2359.      I4 cmdidAddExistingProject;
  2360.      I4 cmdidAddNewSolutionItem;
  2361.      I4 cmdidAddExistingSolutionItem;
  2362.      I4 cmdidAutoHideContext1;
  2363.      I4 cmdidAutoHideContext2;
  2364.      I4 cmdidAutoHideContext3;
  2365.      I4 cmdidAutoHideContext4;
  2366.      I4 cmdidAutoHideContext5;
  2367.      I4 cmdidAutoHideContext6;
  2368.      I4 cmdidAutoHideContext7;
  2369.      I4 cmdidAutoHideContext8;
  2370.      I4 cmdidAutoHideContext9;
  2371.      I4 cmdidAutoHideContext10;
  2372.      I4 cmdidAutoHideContext11;
  2373.      I4 cmdidAutoHideContext12;
  2374.      I4 cmdidAutoHideContext13;
  2375.      I4 cmdidAutoHideContext14;
  2376.      I4 cmdidAutoHideContext15;
  2377.      I4 cmdidAutoHideContext16;
  2378.      I4 cmdidAutoHideContext17;
  2379.      I4 cmdidAutoHideContext18;
  2380.      I4 cmdidAutoHideContext19;
  2381.      I4 cmdidAutoHideContext20;
  2382.      I4 cmdidAutoHideContext21;
  2383.      I4 cmdidAutoHideContext22;
  2384.      I4 cmdidAutoHideContext23;
  2385.      I4 cmdidAutoHideContext24;
  2386.      I4 cmdidAutoHideContext25;
  2387.      I4 cmdidAutoHideContext26;
  2388.      I4 cmdidAutoHideContext27;
  2389.      I4 cmdidAutoHideContext28;
  2390.      I4 cmdidAutoHideContext29;
  2391.      I4 cmdidAutoHideContext30;
  2392.      I4 cmdidAutoHideContext31;
  2393.      I4 cmdidAutoHideContext32;
  2394.      I4 cmdidAutoHideContext33;
  2395.      I4 cmdidShellNavBackward;
  2396.      I4 cmdidShellNavForward;
  2397.      I4 cmdidShellNavigate1;
  2398.      I4 cmdidShellNavigate2;
  2399.      I4 cmdidShellNavigate3;
  2400.      I4 cmdidShellNavigate4;
  2401.      I4 cmdidShellNavigate5;
  2402.      I4 cmdidShellNavigate6;
  2403.      I4 cmdidShellNavigate7;
  2404.      I4 cmdidShellNavigate8;
  2405.      I4 cmdidShellNavigate9;
  2406.      I4 cmdidShellNavigate10;
  2407.      I4 cmdidShellNavigate11;
  2408.      I4 cmdidShellNavigate12;
  2409.      I4 cmdidShellNavigate13;
  2410.      I4 cmdidShellNavigate14;
  2411.      I4 cmdidShellNavigate15;
  2412.      I4 cmdidShellNavigate16;
  2413.      I4 cmdidShellNavigate17;
  2414.      I4 cmdidShellNavigate18;
  2415.      I4 cmdidShellNavigate19;
  2416.      I4 cmdidShellNavigate20;
  2417.      I4 cmdidShellNavigate21;
  2418.      I4 cmdidShellNavigate22;
  2419.      I4 cmdidShellNavigate23;
  2420.      I4 cmdidShellNavigate24;
  2421.      I4 cmdidShellNavigate25;
  2422.      I4 cmdidShellNavigate26;
  2423.      I4 cmdidShellNavigate27;
  2424.      I4 cmdidShellNavigate28;
  2425.      I4 cmdidShellNavigate29;
  2426.      I4 cmdidShellNavigate30;
  2427.      I4 cmdidShellNavigate31;
  2428.      I4 cmdidShellNavigate32;
  2429.      I4 cmdidShellNavigate33;
  2430.      I4 cmdidShellWindowNavigate1;
  2431.      I4 cmdidShellWindowNavigate2;
  2432.      I4 cmdidShellWindowNavigate3;
  2433.      I4 cmdidShellWindowNavigate4;
  2434.      I4 cmdidShellWindowNavigate5;
  2435.      I4 cmdidShellWindowNavigate6;
  2436.      I4 cmdidShellWindowNavigate7;
  2437.      I4 cmdidShellWindowNavigate8;
  2438.      I4 cmdidShellWindowNavigate9;
  2439.      I4 cmdidShellWindowNavigate10;
  2440.      I4 cmdidShellWindowNavigate11;
  2441.      I4 cmdidShellWindowNavigate12;
  2442.      I4 cmdidShellWindowNavigate13;
  2443.      I4 cmdidShellWindowNavigate14;