Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.EnterpriseServices.cs « v4.8 « src - github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eee2d8c90ae799f4f5b6570b1736db63e9027a56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

[assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
[assembly:System.CLSCompliantAttribute(true)]
[assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly:System.EnterpriseServices.ApplicationIDAttribute("1e246775-2281-484f-8ad4-044c15b86eb7")]
[assembly:System.EnterpriseServices.ApplicationNameAttribute(".NET Utilities")]
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
[assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.EnterpriseServices.dll")]
[assembly:System.Reflection.AssemblyDescriptionAttribute("System.EnterpriseServices.dll")]
[assembly:System.Reflection.AssemblyFileVersionAttribute("4.7.3062.0")]
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.7.3062.0")]
[assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
[assembly:System.Reflection.AssemblyTitleAttribute("System.EnterpriseServices.dll")]
[assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
[assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComCompatibleVersionAttribute(1, 0, 3300, 0)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(true)]
[assembly:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute(System.Runtime.InteropServices.DllImportSearchPath.AssemblyDirectory | System.Runtime.InteropServices.DllImportSearchPath.System32)]
[assembly:System.Runtime.InteropServices.GuidAttribute("4fb2d46f-efc8-4643-bcd0-6e5bfa6a174c")]
[assembly:System.Runtime.InteropServices.TypeLibVersionAttribute(2, 4)]
[assembly:System.Security.SecurityRulesAttribute(System.Security.SecurityRuleSet.Level1)]
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
namespace System.EnterpriseServices
{
    [System.SerializableAttribute]
    public enum AccessChecksLevelOption
    {
        Application = 0,
        ApplicationComponent = 1,
    }
    [System.SerializableAttribute]
    public enum ActivationOption
    {
        Library = 0,
        Server = 1,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class Activity
    {
        public Activity(System.EnterpriseServices.ServiceConfig cfg) { }
        public void AsynchronousCall(System.EnterpriseServices.IServiceCall serviceCall) { }
        public void BindToCurrentThread() { }
        public void SynchronousCall(System.EnterpriseServices.IServiceCall serviceCall) { }
        public void UnbindFromThread() { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ApplicationAccessControlAttribute : System.Attribute
    {
        public ApplicationAccessControlAttribute() { }
        public ApplicationAccessControlAttribute(bool val) { }
        public System.EnterpriseServices.AccessChecksLevelOption AccessChecksLevel { get { throw null; } set { } }
        public System.EnterpriseServices.AuthenticationOption Authentication { get { throw null; } set { } }
        public System.EnterpriseServices.ImpersonationLevelOption ImpersonationLevel { get { throw null; } set { } }
        public bool Value { get { throw null; } set { } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ApplicationActivationAttribute : System.Attribute
    {
        public ApplicationActivationAttribute(System.EnterpriseServices.ActivationOption opt) { }
        public string SoapMailbox { get { throw null; } set { } }
        public string SoapVRoot { get { throw null; } set { } }
        public System.EnterpriseServices.ActivationOption Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ApplicationIDAttribute : System.Attribute
    {
        public ApplicationIDAttribute(string guid) { }
        public System.Guid Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ApplicationNameAttribute : System.Attribute
    {
        public ApplicationNameAttribute(string name) { }
        public string Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ApplicationQueuingAttribute : System.Attribute
    {
        public ApplicationQueuingAttribute() { }
        public bool Enabled { get { throw null; } set { } }
        public int MaxListenerThreads { get { throw null; } set { } }
        public bool QueueListenerEnabled { get { throw null; } set { } }
    }
    [System.SerializableAttribute]
    public enum AuthenticationOption
    {
        Call = 3,
        Connect = 2,
        Default = 0,
        Integrity = 5,
        None = 1,
        Packet = 4,
        Privacy = 6,
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class AutoCompleteAttribute : System.Attribute
    {
        public AutoCompleteAttribute() { }
        public AutoCompleteAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum BindingOption
    {
        BindingToPoolThread = 1,
        NoBinding = 0,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, Pack=1)]
    public partial struct BOID
    {
        [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.ByValArray)]
        public byte[] rgb;
    }
    public sealed partial class BYOT
    {
        internal BYOT() { }
        public static object CreateWithTipTransaction(string url, System.Type t) { throw null; }
        public static object CreateWithTransaction(object transaction, System.Type t) { throw null; }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ComponentAccessControlAttribute : System.Attribute
    {
        public ComponentAccessControlAttribute() { }
        public ComponentAccessControlAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class COMTIIntrinsicsAttribute : System.Attribute
    {
        public COMTIIntrinsicsAttribute() { }
        public COMTIIntrinsicsAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ConstructionEnabledAttribute : System.Attribute
    {
        public ConstructionEnabledAttribute() { }
        public ConstructionEnabledAttribute(bool val) { }
        public string Default { get { throw null; } set { } }
        public bool Enabled { get { throw null; } set { } }
    }
    public sealed partial class ContextUtil
    {
        internal ContextUtil() { }
        public static System.Guid ActivityId { get { throw null; } }
        public static System.Guid ApplicationId { get { throw null; } }
        public static System.Guid ApplicationInstanceId { get { throw null; } }
        public static System.Guid ContextId { get { throw null; } }
        public static bool DeactivateOnReturn { get { throw null; } set { } }
        public static bool IsInTransaction { get { throw null; } }
        public static bool IsSecurityEnabled { get { throw null; } }
        public static System.EnterpriseServices.TransactionVote MyTransactionVote { get { throw null; } set { } }
        public static System.Guid PartitionId { get { throw null; } }
        public static System.Transactions.Transaction SystemTransaction { get { throw null; } }
        public static object Transaction { get { throw null; } }
        public static System.Guid TransactionId { get { throw null; } }
        public static void DisableCommit() { }
        public static void EnableCommit() { }
        public static object GetNamedProperty(string name) { throw null; }
        public static bool IsCallerInRole(string role) { throw null; }
        public static bool IsDefaultContext() { throw null; }
        public static void SetAbort() { }
        public static void SetComplete() { }
        public static void SetNamedProperty(string name, object value) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Method, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class DescriptionAttribute : System.Attribute
    {
        public DescriptionAttribute(string desc) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class EventClassAttribute : System.Attribute
    {
        public EventClassAttribute() { }
        public bool AllowInprocSubscribers { get { throw null; } set { } }
        public bool FireInParallel { get { throw null; } set { } }
        public string PublisherFilter { get { throw null; } set { } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class EventTrackingEnabledAttribute : System.Attribute
    {
        public EventTrackingEnabledAttribute() { }
        public EventTrackingEnabledAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ExceptionClassAttribute : System.Attribute
    {
        public ExceptionClassAttribute(string name) { }
        public string Value { get { throw null; } }
    }
    [System.Runtime.InteropServices.GuidAttribute("FE6777FB-A674-4177-8F32-6D707E113484")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface IAsyncErrorNotify
    {
        void OnError(int hresult);
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class IISIntrinsicsAttribute : System.Attribute
    {
        public IISIntrinsicsAttribute() { }
        public IISIntrinsicsAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    [System.SerializableAttribute]
    public enum ImpersonationLevelOption
    {
        Anonymous = 1,
        Default = 0,
        Delegate = 4,
        Identify = 2,
        Impersonate = 3,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum InheritanceOption
    {
        Ignore = 1,
        Inherit = 0,
    }
    [System.FlagsAttribute]
    [System.SerializableAttribute]
    public enum InstallationFlags
    {
        Configure = 1024,
        ConfigureComponentsOnly = 16,
        CreateTargetApplication = 2,
        Default = 0,
        ExpectExistingTypeLib = 1,
        FindOrCreateTargetApplication = 4,
        Install = 512,
        ReconfigureExistingApplication = 8,
        Register = 256,
        ReportWarningsToConsole = 32,
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Interface, Inherited=true, AllowMultiple=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class InterfaceQueuingAttribute : System.Attribute
    {
        public InterfaceQueuingAttribute() { }
        public InterfaceQueuingAttribute(bool enabled) { }
        public bool Enabled { get { throw null; } set { } }
        public string Interface { get { throw null; } set { } }
    }
    [System.Runtime.InteropServices.GuidAttribute("51372AFD-CAE7-11CF-BE81-00AA00A2FA25")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface IPlaybackControl
    {
        void FinalClientRetry();
        void FinalServerRetry();
    }
    [System.Runtime.InteropServices.GuidAttribute("72380d55-8d2b-43a3-8513-2b6ef31434e9")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface IProcessInitControl
    {
        void ResetInitializerTimeout(int dwSecondsRemaining);
    }
    [System.Runtime.InteropServices.GuidAttribute("1113f52d-dc7f-4943-aed6-88d04027e32a")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface IProcessInitializer
    {
        void Shutdown();
        void Startup([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]object punkProcessControl);
    }
    [System.Runtime.InteropServices.GuidAttribute("55e3ea25-55cb-4650-8887-18e8d30bb4bc")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface IRegistrationHelper
    {
        void InstallAssembly([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string assembly, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]ref string application, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.Out][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]ref string tlb, [System.Runtime.InteropServices.In]System.EnterpriseServices.InstallationFlags installFlags);
        void UninstallAssembly([System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string assembly, [System.Runtime.InteropServices.In][System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string application);
    }
    [System.Runtime.InteropServices.GuidAttribute("6619a740-8154-43be-a186-0319578e02db")]
    public partial interface IRemoteDispatch
    {
        [System.EnterpriseServices.AutoCompleteAttribute(true)]
        string RemoteDispatchAutoDone(string s);
        [System.EnterpriseServices.AutoCompleteAttribute(false)]
        string RemoteDispatchNotAutoDone(string s);
    }
    [System.Runtime.InteropServices.GuidAttribute("BD3E2E12-42DD-40f4-A09A-95A50C58304B")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface IServiceCall
    {
        void OnCall();
    }
    [System.Runtime.InteropServices.GuidAttribute("8165B19E-8D3A-4d0b-80C8-97DE310DB583")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface IServicedComponentInfo
    {
        void GetComponentInfo(ref int infoMask, out string[] infoArray);
    }
    [System.Runtime.InteropServices.GuidAttribute("0FB15084-AF41-11CE-BD2B-204C4F4F5020")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface ITransaction
    {
        void Abort(ref System.EnterpriseServices.BOID pboidReason, int fRetaining, int fAsync);
        void Commit(int fRetaining, int grfTC, int grfRM);
        void GetTransactionInfo(out System.EnterpriseServices.XACTTRANSINFO pinfo);
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class JustInTimeActivationAttribute : System.Attribute
    {
        public JustInTimeActivationAttribute() { }
        public JustInTimeActivationAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class LoadBalancingSupportedAttribute : System.Attribute
    {
        public LoadBalancingSupportedAttribute() { }
        public LoadBalancingSupportedAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class MustRunInClientContextAttribute : System.Attribute
    {
        public MustRunInClientContextAttribute() { }
        public MustRunInClientContextAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ObjectPoolingAttribute : System.Attribute
    {
        public ObjectPoolingAttribute() { }
        public ObjectPoolingAttribute(bool enable) { }
        public ObjectPoolingAttribute(bool enable, int minPoolSize, int maxPoolSize) { }
        public ObjectPoolingAttribute(int minPoolSize, int maxPoolSize) { }
        public int CreationTimeout { get { throw null; } set { } }
        public bool Enabled { get { throw null; } set { } }
        public int MaxPoolSize { get { throw null; } set { } }
        public int MinPoolSize { get { throw null; } set { } }
        public bool AfterSaveChanges(System.Collections.Hashtable info) { throw null; }
        public bool Apply(System.Collections.Hashtable info) { throw null; }
        public bool IsValidTarget(string s) { throw null; }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum PartitionOption
    {
        Ignore = 0,
        Inherit = 1,
        New = 2,
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class PrivateComponentAttribute : System.Attribute
    {
        public PrivateComponentAttribute() { }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum PropertyLockMode
    {
        Method = 1,
        SetGet = 0,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum PropertyReleaseMode
    {
        Process = 1,
        Standard = 0,
    }
    [System.Runtime.InteropServices.GuidAttribute("36dcda30-dc3b-4d93-be42-90b2d74c64e7")]
    [System.SerializableAttribute]
    public partial class RegistrationConfig
    {
        public RegistrationConfig() { }
        public string Application { get { throw null; } set { } }
        public string ApplicationRootDirectory { get { throw null; } set { } }
        public string AssemblyFile { get { throw null; } set { } }
        public System.EnterpriseServices.InstallationFlags InstallationFlags { get { throw null; } set { } }
        public string Partition { get { throw null; } set { } }
        public string TypeLibrary { get { throw null; } set { } }
    }
    [System.SerializableAttribute]
    public sealed partial class RegistrationErrorInfo
    {
        internal RegistrationErrorInfo() { }
        public int ErrorCode { get { throw null; } }
        public string ErrorString { get { throw null; } }
        public string MajorRef { get { throw null; } }
        public string MinorRef { get { throw null; } }
        public string Name { get { throw null; } }
    }
    [System.SerializableAttribute]
    public sealed partial class RegistrationException : System.SystemException
    {
        public RegistrationException() { }
        public RegistrationException(string msg) { }
        public RegistrationException(string msg, System.Exception inner) { }
        public System.EnterpriseServices.RegistrationErrorInfo[] ErrorInfo { get { throw null; } }
        public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext ctx) { }
    }
    [System.Runtime.InteropServices.GuidAttribute("89a86e7b-c229-4008-9baa-2f5c8411d7e0")]
    public sealed partial class RegistrationHelper : System.MarshalByRefObject, System.EnterpriseServices.IRegistrationHelper
    {
        public RegistrationHelper() { }
        public void InstallAssembly(string assembly, ref string application, string partition, ref string tlb, System.EnterpriseServices.InstallationFlags installFlags) { }
        public void InstallAssembly(string assembly, ref string application, ref string tlb, System.EnterpriseServices.InstallationFlags installFlags) { }
        public void InstallAssemblyFromConfig([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]ref System.EnterpriseServices.RegistrationConfig regConfig) { }
        public void UninstallAssembly(string assembly, string application) { }
        public void UninstallAssembly(string assembly, string application, string partition) { }
        public void UninstallAssemblyFromConfig([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]ref System.EnterpriseServices.RegistrationConfig regConfig) { }
    }
    [System.EnterpriseServices.TransactionAttribute(System.EnterpriseServices.TransactionOption.RequiresNew)]
    [System.ObsoleteAttribute("The RegistrationHelperTx class has been deprecated.")]
    [System.Runtime.InteropServices.GuidAttribute("c89ac250-e18a-4fc7-abd5-b8897b6a78a5")]
    public sealed partial class RegistrationHelperTx : System.EnterpriseServices.ServicedComponent
    {
        public RegistrationHelperTx() { }
        protected internal override void Activate() { }
        protected internal override void Deactivate() { }
        public void InstallAssembly(string assembly, ref string application, string partition, ref string tlb, System.EnterpriseServices.InstallationFlags installFlags, object sync) { }
        public void InstallAssembly(string assembly, ref string application, ref string tlb, System.EnterpriseServices.InstallationFlags installFlags, object sync) { }
        public void InstallAssemblyFromConfig([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]ref System.EnterpriseServices.RegistrationConfig regConfig, object sync) { }
        public bool IsInTransaction() { throw null; }
        public void UninstallAssembly(string assembly, string application, object sync) { }
        public void UninstallAssembly(string assembly, string application, string partition, object sync) { }
        public void UninstallAssemblyFromConfig([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IUnknown)]ref System.EnterpriseServices.RegistrationConfig regConfig, object sync) { }
    }
    public sealed partial class ResourcePool
    {
        public ResourcePool(System.EnterpriseServices.ResourcePool.TransactionEndDelegate cb) { }
        public object GetResource() { throw null; }
        public bool PutResource(object resource) { throw null; }
        public delegate void TransactionEndDelegate(object resource);
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class | System.AttributeTargets.Method, Inherited=true, AllowMultiple=false)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class SecureMethodAttribute : System.Attribute
    {
        public SecureMethodAttribute() { }
    }
    public sealed partial class SecurityCallContext
    {
        internal SecurityCallContext() { }
        public System.EnterpriseServices.SecurityCallers Callers { get { throw null; } }
        public static System.EnterpriseServices.SecurityCallContext CurrentCall { get { throw null; } }
        public System.EnterpriseServices.SecurityIdentity DirectCaller { get { throw null; } }
        public bool IsSecurityEnabled { get { throw null; } }
        public int MinAuthenticationLevel { get { throw null; } }
        public int NumCallers { get { throw null; } }
        public System.EnterpriseServices.SecurityIdentity OriginalCaller { get { throw null; } }
        public bool IsCallerInRole(string role) { throw null; }
        public bool IsUserInRole(string user, string role) { throw null; }
    }
    public sealed partial class SecurityCallers : System.Collections.IEnumerable
    {
        internal SecurityCallers() { }
        public int Count { get { throw null; } }
        public System.EnterpriseServices.SecurityIdentity this[int idx] { get { throw null; } }
        public System.Collections.IEnumerator GetEnumerator() { throw null; }
    }
    public sealed partial class SecurityIdentity
    {
        internal SecurityIdentity() { }
        public string AccountName { get { throw null; } }
        public System.EnterpriseServices.AuthenticationOption AuthenticationLevel { get { throw null; } }
        public int AuthenticationService { get { throw null; } }
        public System.EnterpriseServices.ImpersonationLevelOption ImpersonationLevel { get { throw null; } }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly | System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Method, Inherited=true, AllowMultiple=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class SecurityRoleAttribute : System.Attribute
    {
        public SecurityRoleAttribute(string role) { }
        public SecurityRoleAttribute(string role, bool everyone) { }
        public string Description { get { throw null; } set { } }
        public string Role { get { throw null; } set { } }
        public bool SetEveryoneAccess { get { throw null; } set { } }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ServiceConfig
    {
        public ServiceConfig() { }
        public System.EnterpriseServices.BindingOption Binding { get { throw null; } set { } }
        public System.Transactions.Transaction BringYourOwnSystemTransaction { get { throw null; } set { } }
        public System.EnterpriseServices.ITransaction BringYourOwnTransaction { get { throw null; } set { } }
        public bool COMTIIntrinsicsEnabled { get { throw null; } set { } }
        public bool IISIntrinsicsEnabled { get { throw null; } set { } }
        public System.EnterpriseServices.InheritanceOption Inheritance { get { throw null; } set { } }
        public System.EnterpriseServices.TransactionIsolationLevel IsolationLevel { get { throw null; } set { } }
        public System.Guid PartitionId { get { throw null; } set { } }
        public System.EnterpriseServices.PartitionOption PartitionOption { get { throw null; } set { } }
        public string SxsDirectory { get { throw null; } set { } }
        public string SxsName { get { throw null; } set { } }
        public System.EnterpriseServices.SxsOption SxsOption { get { throw null; } set { } }
        public System.EnterpriseServices.SynchronizationOption Synchronization { get { throw null; } set { } }
        public System.EnterpriseServices.ThreadPoolOption ThreadPool { get { throw null; } set { } }
        public string TipUrl { get { throw null; } set { } }
        public string TrackingAppName { get { throw null; } set { } }
        public string TrackingComponentName { get { throw null; } set { } }
        public bool TrackingEnabled { get { throw null; } set { } }
        public System.EnterpriseServices.TransactionOption Transaction { get { throw null; } set { } }
        public string TransactionDescription { get { throw null; } set { } }
        public int TransactionTimeout { get { throw null; } set { } }
    }
    [System.SerializableAttribute]
    public abstract partial class ServicedComponent : System.ContextBoundObject, System.EnterpriseServices.IRemoteDispatch, System.EnterpriseServices.IServicedComponentInfo, System.IDisposable
    {
        public ServicedComponent() { }
        protected internal virtual void Activate() { }
        protected internal virtual bool CanBePooled() { throw null; }
        protected internal virtual void Construct(string s) { }
        protected internal virtual void Deactivate() { }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public static void DisposeObject(System.EnterpriseServices.ServicedComponent sc) { }
        [System.EnterpriseServices.AutoCompleteAttribute(true)]
        string System.EnterpriseServices.IRemoteDispatch.RemoteDispatchAutoDone(string s) { throw null; }
        [System.EnterpriseServices.AutoCompleteAttribute(false)]
        string System.EnterpriseServices.IRemoteDispatch.RemoteDispatchNotAutoDone(string s) { throw null; }
        void System.EnterpriseServices.IServicedComponentInfo.GetComponentInfo(ref int infoMask, out string[] infoArray) { throw null; }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public sealed partial class ServicedComponentException : System.SystemException
    {
        public ServicedComponentException() { }
        public ServicedComponentException(string message) { }
        public ServicedComponentException(string message, System.Exception innerException) { }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class ServiceDomain
    {
        internal ServiceDomain() { }
        public static void Enter(System.EnterpriseServices.ServiceConfig cfg) { }
        public static System.EnterpriseServices.TransactionStatus Leave() { throw null; }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class SharedProperty
    {
        internal SharedProperty() { }
        public object Value { get { throw null; } set { } }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class SharedPropertyGroup
    {
        internal SharedPropertyGroup() { }
        public System.EnterpriseServices.SharedProperty CreateProperty(string name, out bool fExists) { throw null; }
        public System.EnterpriseServices.SharedProperty CreatePropertyByPosition(int position, out bool fExists) { throw null; }
        public System.EnterpriseServices.SharedProperty Property(string name) { throw null; }
        public System.EnterpriseServices.SharedProperty PropertyByPosition(int position) { throw null; }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class SharedPropertyGroupManager : System.Collections.IEnumerable
    {
        public SharedPropertyGroupManager() { }
        public System.EnterpriseServices.SharedPropertyGroup CreatePropertyGroup(string name, ref System.EnterpriseServices.PropertyLockMode dwIsoMode, ref System.EnterpriseServices.PropertyReleaseMode dwRelMode, out bool fExist) { throw null; }
        public System.Collections.IEnumerator GetEnumerator() { throw null; }
        public System.EnterpriseServices.SharedPropertyGroup Group(string name) { throw null; }
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum SxsOption
    {
        Ignore = 0,
        Inherit = 1,
        New = 2,
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class SynchronizationAttribute : System.Attribute
    {
        public SynchronizationAttribute() { }
        public SynchronizationAttribute(System.EnterpriseServices.SynchronizationOption val) { }
        public System.EnterpriseServices.SynchronizationOption Value { get { throw null; } }
    }
    [System.SerializableAttribute]
    public enum SynchronizationOption
    {
        Disabled = 0,
        NotSupported = 1,
        Required = 3,
        RequiresNew = 4,
        Supported = 2,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum ThreadPoolOption
    {
        Inherit = 1,
        MTA = 3,
        None = 0,
        STA = 2,
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    public sealed partial class TransactionAttribute : System.Attribute
    {
        public TransactionAttribute() { }
        public TransactionAttribute(System.EnterpriseServices.TransactionOption val) { }
        public System.EnterpriseServices.TransactionIsolationLevel Isolation { get { throw null; } set { } }
        public int Timeout { get { throw null; } set { } }
        public System.EnterpriseServices.TransactionOption Value { get { throw null; } }
    }
    [System.SerializableAttribute]
    public enum TransactionIsolationLevel
    {
        Any = 0,
        ReadCommitted = 2,
        ReadUncommitted = 1,
        RepeatableRead = 3,
        Serializable = 4,
    }
    [System.SerializableAttribute]
    public enum TransactionOption
    {
        Disabled = 0,
        NotSupported = 1,
        Required = 3,
        RequiresNew = 4,
        Supported = 2,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum TransactionStatus
    {
        Aborted = 4,
        Aborting = 3,
        Commited = 0,
        LocallyOk = 1,
        NoTransaction = 2,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.SerializableAttribute]
    public enum TransactionVote
    {
        Abort = 1,
        Commit = 0,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential, Pack=4)]
    public partial struct XACTTRANSINFO
    {
        public int grfRMSupported;
        public int grfRMSupportedRetaining;
        public int grfTCSupported;
        public int grfTCSupportedRetaining;
        public int isoFlags;
        public int isoLevel;
        public System.EnterpriseServices.BOID uow;
    }
}
namespace System.EnterpriseServices.CompensatingResourceManager
{
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly, Inherited=true)]
    [System.Runtime.InteropServices.ComVisibleAttribute(false)]
    [System.Runtime.InteropServices.ProgIdAttribute("System.EnterpriseServices.Crm.ApplicationCrmEnabledAttribute")]
    public sealed partial class ApplicationCrmEnabledAttribute : System.Attribute
    {
        public ApplicationCrmEnabledAttribute() { }
        public ApplicationCrmEnabledAttribute(bool val) { }
        public bool Value { get { throw null; } }
    }
    public sealed partial class Clerk
    {
        public Clerk(string compensator, string description, System.EnterpriseServices.CompensatingResourceManager.CompensatorOptions flags) { }
        public Clerk(System.Type compensator, string description, System.EnterpriseServices.CompensatingResourceManager.CompensatorOptions flags) { }
        public int LogRecordCount { get { throw null; } }
        public string TransactionUOW { get { throw null; } }
        ~Clerk() { }
        public void ForceLog() { }
        public void ForceTransactionToAbort() { }
        public void ForgetLogRecord() { }
        public void WriteLogRecord(object record) { }
    }
    public sealed partial class ClerkInfo
    {
        internal ClerkInfo() { }
        public string ActivityId { get { throw null; } }
        public System.EnterpriseServices.CompensatingResourceManager.Clerk Clerk { get { throw null; } }
        public string Compensator { get { throw null; } }
        public string Description { get { throw null; } }
        public string InstanceId { get { throw null; } }
        public string TransactionUOW { get { throw null; } }
        ~ClerkInfo() { }
    }
    public sealed partial class ClerkMonitor : System.Collections.IEnumerable
    {
        public ClerkMonitor() { }
        public int Count { get { throw null; } }
        public System.EnterpriseServices.CompensatingResourceManager.ClerkInfo this[int index] { get { throw null; } }
        public System.EnterpriseServices.CompensatingResourceManager.ClerkInfo this[string index] { get { throw null; } }
        ~ClerkMonitor() { }
        public System.Collections.IEnumerator GetEnumerator() { throw null; }
        public void Populate() { }
    }
    public partial class Compensator : System.EnterpriseServices.ServicedComponent
    {
        public Compensator() { }
        public System.EnterpriseServices.CompensatingResourceManager.Clerk Clerk { get { throw null; } }
        public virtual bool AbortRecord(System.EnterpriseServices.CompensatingResourceManager.LogRecord rec) { throw null; }
        public virtual void BeginAbort(bool fRecovery) { }
        public virtual void BeginCommit(bool fRecovery) { }
        public virtual void BeginPrepare() { }
        public virtual bool CommitRecord(System.EnterpriseServices.CompensatingResourceManager.LogRecord rec) { throw null; }
        public virtual void EndAbort() { }
        public virtual void EndCommit() { }
        public virtual bool EndPrepare() { throw null; }
        public virtual bool PrepareRecord(System.EnterpriseServices.CompensatingResourceManager.LogRecord rec) { throw null; }
    }
    [System.FlagsAttribute]
    [System.SerializableAttribute]
    public enum CompensatorOptions
    {
        AbortPhase = 4,
        AllPhases = 7,
        CommitPhase = 2,
        FailIfInDoubtsRemain = 16,
        PreparePhase = 1,
    }
    public sealed partial class LogRecord
    {
        internal LogRecord() { }
        public System.EnterpriseServices.CompensatingResourceManager.LogRecordFlags Flags { get { throw null; } }
        public object Record { get { throw null; } }
        public int Sequence { get { throw null; } }
    }
    [System.FlagsAttribute]
    [System.SerializableAttribute]
    public enum LogRecordFlags
    {
        ForgetTarget = 1,
        ReplayInProgress = 64,
        WrittenDuringAbort = 8,
        WrittenDuringCommit = 4,
        WrittenDuringPrepare = 2,
        WrittenDuringReplay = 32,
        WrittenDurringRecovery = 16,
    }
    [System.SerializableAttribute]
    public enum TransactionState
    {
        Aborted = 2,
        Active = 0,
        Committed = 1,
        Indoubt = 3,
    }
}
namespace System.EnterpriseServices.Internal
{
    [System.Runtime.InteropServices.GuidAttribute("ef24f689-14f8-4d92-b4af-d7b1f0e70fd4")]
    public partial class AppDomainHelper
    {
        public AppDomainHelper() { }
        ~AppDomainHelper() { }
    }
    [System.Runtime.InteropServices.GuidAttribute("458aa3b5-265a-4b75-bc05-9bea4630cf18")]
    public partial class AssemblyLocator : System.MarshalByRefObject
    {
        public AssemblyLocator() { }
    }
    public partial class ClientRemotingConfig
    {
        public ClientRemotingConfig() { }
        public static bool Write(string DestinationDirectory, string VRoot, string BaseUrl, string AssemblyName, string TypeName, string ProgId, string Mode, string Transport) { throw null; }
    }
    [System.Runtime.InteropServices.GuidAttribute("ecabafd1-7f19-11d2-978e-0000f8757e2a")]
    public partial class ClrObjectFactory : System.EnterpriseServices.Internal.IClrObjectFactory
    {
        public ClrObjectFactory() { }
        public object CreateFromAssembly(string AssemblyName, string TypeName, string Mode) { throw null; }
        public object CreateFromMailbox(string Mailbox, string Mode) { throw null; }
        public object CreateFromVroot(string VrootUrl, string Mode) { throw null; }
        public object CreateFromWsdl(string WsdlUrl, string Mode) { throw null; }
    }
    [System.Runtime.InteropServices.GuidAttribute("3b0398c9-7812-4007-85cb-18c771f2206f")]
    public partial class ComManagedImportUtil : System.EnterpriseServices.Internal.IComManagedImportUtil
    {
        public ComManagedImportUtil() { }
        public void GetComponentInfo(string assemblyPath, out string numComponents, out string componentInfo) { throw null; }
        public void InstallAssembly(string asmpath, string parname, string appname) { }
    }
    public partial class ComSoapPublishError
    {
        public ComSoapPublishError() { }
        public static void Report(string s) { }
    }
    [System.Runtime.InteropServices.GuidAttribute("d8013ff1-730b-45e2-ba24-874b7242c425")]
    public partial class GenerateMetadata : System.EnterpriseServices.Internal.IComSoapMetadata
    {
        public GenerateMetadata() { }
        public string Generate(string strSrcTypeLib, string outPath) { throw null; }
        public string GenerateMetaData(string strSrcTypeLib, string outPath, byte[] PublicKey, System.Reflection.StrongNameKeyPair KeyPair) { throw null; }
        public string GenerateSigned(string strSrcTypeLib, string outPath, bool InstallGac, out string Error) { throw null; }
        [System.Runtime.InteropServices.DllImport("kernel32.dll")][System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.PreserveSig)]public static extern int SearchPath(string path, string fileName, string extension, int numBufferChars, string buffer, int[] filePart);
    }
    [System.Runtime.InteropServices.GuidAttribute("ecabafd2-7f19-11d2-978e-0000f8757e2a")]
    public partial interface IClrObjectFactory
    {
        [System.Runtime.InteropServices.DispIdAttribute(1)]
        [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IDispatch)]
        object CreateFromAssembly(string assembly, string type, string mode);
        [System.Runtime.InteropServices.DispIdAttribute(4)]
        [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IDispatch)]
        object CreateFromMailbox(string Mailbox, string Mode);
        [System.Runtime.InteropServices.DispIdAttribute(2)]
        [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IDispatch)]
        object CreateFromVroot(string VrootUrl, string Mode);
        [System.Runtime.InteropServices.DispIdAttribute(3)]
        [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.IDispatch)]
        object CreateFromWsdl(string WsdlUrl, string Mode);
    }
    [System.Runtime.InteropServices.GuidAttribute("c3f8f66b-91be-4c99-a94f-ce3b0a951039")]
    public partial interface IComManagedImportUtil
    {
        [System.Runtime.InteropServices.DispIdAttribute(4)]
        void GetComponentInfo([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string assemblyPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string numComponents, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string componentInfo);
        [System.Runtime.InteropServices.DispIdAttribute(5)]
        void InstallAssembly([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string filename, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string parname, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string appname);
    }
    [System.Runtime.InteropServices.GuidAttribute("d8013ef0-730b-45e2-ba24-874b7242c425")]
    public partial interface IComSoapIISVRoot
    {
        [System.Runtime.InteropServices.DispIdAttribute(1)]
        void Create([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string RootWeb, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string PhysicalDirectory, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string VirtualDirectory, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
        [System.Runtime.InteropServices.DispIdAttribute(2)]
        void Delete([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string RootWeb, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string PhysicalDirectory, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string VirtualDirectory, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
    }
    [System.Runtime.InteropServices.GuidAttribute("d8013ff0-730b-45e2-ba24-874b7242c425")]
    public partial interface IComSoapMetadata
    {
        [System.Runtime.InteropServices.DispIdAttribute(1)]
        [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]
        string Generate([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string SrcTypeLibFileName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string OutPath);
        [System.Runtime.InteropServices.DispIdAttribute(2)]
        [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]
        string GenerateSigned([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string SrcTypeLibFileName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string OutPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]bool InstallGac, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
    }
    [System.Runtime.InteropServices.GuidAttribute("d8013eee-730b-45e2-ba24-874b7242c425")]
    public partial interface IComSoapPublisher
    {
        [System.Runtime.InteropServices.DispIdAttribute(6)]
        void CreateMailBox([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string RootMailServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string MailBox, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string SmtpName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Domain, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string PhysicalPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
        [System.Runtime.InteropServices.DispIdAttribute(4)]
        void CreateVirtualRoot([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string Operation, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string FullUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string BaseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string VirtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string PhysicalPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
        [System.Runtime.InteropServices.DispIdAttribute(7)]
        void DeleteMailBox([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string RootMailServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string MailBox, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
        [System.Runtime.InteropServices.DispIdAttribute(5)]
        void DeleteVirtualRoot([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string RootWebServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string FullUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
        [System.Runtime.InteropServices.DispIdAttribute(13)]
        void GacInstall([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string AssemblyPath);
        [System.Runtime.InteropServices.DispIdAttribute(14)]
        void GacRemove([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string AssemblyPath);
        [System.Runtime.InteropServices.DispIdAttribute(15)]
        void GetAssemblyNameForCache([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string TypeLibPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string CachePath);
        [System.Runtime.InteropServices.DispIdAttribute(10)]
        [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]
        string GetTypeNameFromProgId([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string AssemblyPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string ProgId);
        [System.Runtime.InteropServices.DispIdAttribute(9)]
        void ProcessClientTlb([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string ProgId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string SrcTlbPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string PhysicalPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string VRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string BaseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string Mode, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string Transport, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string AssemblyName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string TypeName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
        [System.Runtime.InteropServices.DispIdAttribute(8)]
        void ProcessServerTlb([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string ProgId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string SrcTlbPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string PhysicalPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string Operation, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string AssemblyName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string TypeName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
        [System.Runtime.InteropServices.DispIdAttribute(11)]
        void RegisterAssembly([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string AssemblyPath);
        [System.Runtime.InteropServices.DispIdAttribute(12)]
        void UnRegisterAssembly([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string AssemblyPath);
    }
    [System.Runtime.InteropServices.GuidAttribute("d8013ef1-730b-45e2-ba24-874b7242c425")]
    public partial class IISVirtualRoot : System.EnterpriseServices.Internal.IComSoapIISVRoot
    {
        public IISVirtualRoot() { }
        public void Create(string RootWeb, string inPhysicalDirectory, string VirtualDirectory, out string Error) { throw null; }
        public void Delete(string RootWeb, string PhysicalDirectory, string VirtualDirectory, out string Error) { throw null; }
    }
    [System.Runtime.InteropServices.GuidAttribute("6261e4b5-572a-4142-a2f9-1fe1a0c97097")]
    public partial interface IServerWebConfig
    {
        [System.Runtime.InteropServices.DispIdAttribute(1)]
        void AddElement([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string FilePath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string AssemblyName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string TypeName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string ProgId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string Mode, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
        [System.Runtime.InteropServices.DispIdAttribute(2)]
        void Create([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string FilePath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string FileRootName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string Error);
    }
    [System.Runtime.InteropServices.GuidAttribute("E7F0F021-9201-47e4-94DA-1D1416DEC27A")]
    public partial interface ISoapClientImport
    {
        [System.Runtime.InteropServices.DispIdAttribute(1)]
        void ProcessClientTlbEx([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string progId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string virtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string baseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string authentication, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string assemblyName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string typeName);
    }
    [System.Runtime.InteropServices.GuidAttribute("1E7BA9F7-21DB-4482-929E-21BDE2DFE51C")]
    public partial interface ISoapServerTlb
    {
        [System.Runtime.InteropServices.DispIdAttribute(1)]
        void AddServerTlb([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string progId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string classId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string interfaceId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string srcTlbPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string rootWebServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string baseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string virtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string clientActivated, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string wellKnown, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string discoFile, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string operation, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string assemblyName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string typeName);
        [System.Runtime.InteropServices.DispIdAttribute(2)]
        void DeleteServerTlb([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string progId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string classId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string interfaceId, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string srcTlbPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string rootWebServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string baseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string virtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string operation, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string assemblyName, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string typeName);
    }
    [System.Runtime.InteropServices.GuidAttribute("A31B6577-71D2-4344-AEDF-ADC1B0DC5347")]
    public partial interface ISoapServerVRoot
    {
        [System.Runtime.InteropServices.DispIdAttribute(1)]
        void CreateVirtualRootEx([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string rootWebServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string inBaseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string inVirtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string homePage, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string discoFile, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string secureSockets, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string authentication, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string operation, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string baseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string virtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string physicalPath);
        [System.Runtime.InteropServices.DispIdAttribute(2)]
        void DeleteVirtualRootEx([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string rootWebServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string baseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string virtualRoot);
        [System.Runtime.InteropServices.DispIdAttribute(3)]
        void GetVirtualRootStatus([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string rootWebServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string inBaseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string inVirtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string exists, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string secureSockets, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string windowsAuth, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string anonymous, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string homePage, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string discoFile, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string physicalPath, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string baseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string virtualRoot);
    }
    [System.Runtime.InteropServices.GuidAttribute("5AC4CB7E-F89F-429b-926B-C7F940936BF4")]
    public partial interface ISoapUtility
    {
        [System.Runtime.InteropServices.DispIdAttribute(2)]
        void GetServerBinPath([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string rootWebServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string inBaseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string inVirtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string binPath);
        [System.Runtime.InteropServices.DispIdAttribute(1)]
        void GetServerPhysicalPath([System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string rootWebServer, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string inBaseUrl, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]string inVirtualRoot, [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.BStr)]out string physicalPath);
        [System.Runtime.InteropServices.DispIdAttribute(3)]
        void Present();
    }
    [System.Runtime.InteropServices.GuidAttribute("d8013eef-730b-45e2-ba24-874b7242c425")]
    public partial class Publish : System.EnterpriseServices.Internal.IComSoapPublisher
    {
        public Publish() { }
        public void CreateMailBox(string RootMailServer, string MailBox, out string SmtpName, out string Domain, out string PhysicalPath, out string Error) { throw null; }
        public void CreateVirtualRoot(string Operation, string FullUrl, out string BaseUrl, out string VirtualRoot, out string PhysicalPath, out string Error) { throw null; }
        public void DeleteMailBox(string RootMailServer, string MailBox, out string Error) { throw null; }
        public void DeleteVirtualRoot(string RootWebServer, string FullUrl, out string Error) { throw null; }
        public void GacInstall(string AssemblyPath) { }
        public void GacRemove(string AssemblyPath) { }
        public void GetAssemblyNameForCache(string TypeLibPath, out string CachePath) { throw null; }
        public static string GetClientPhysicalPath(bool CreateDir) { throw null; }
        public string GetTypeNameFromProgId(string AssemblyPath, string ProgId) { throw null; }
        public static void ParseUrl(string FullUrl, out string BaseUrl, out string VirtualRoot) { throw null; }
        public void ProcessClientTlb(string ProgId, string SrcTlbPath, string PhysicalPath, string VRoot, string BaseUrl, string Mode, string Transport, out string AssemblyName, out string TypeName, out string Error) { throw null; }
        public void ProcessServerTlb(string ProgId, string SrcTlbPath, string PhysicalPath, string Operation, out string strAssemblyName, out string TypeName, out string Error) { throw null; }
        public void RegisterAssembly(string AssemblyPath) { }
        public void UnRegisterAssembly(string AssemblyPath) { }
    }
    public partial class ServerWebConfig : System.EnterpriseServices.Internal.IServerWebConfig
    {
        public ServerWebConfig() { }
        public void AddElement(string FilePath, string AssemblyName, string TypeName, string ProgId, string WkoMode, out string Error) { throw null; }
        public void Create(string FilePath, string FilePrefix, out string Error) { throw null; }
    }
    [System.Runtime.InteropServices.GuidAttribute("346D5B9F-45E1-45c0-AADF-1B7D221E9063")]
    public sealed partial class SoapClientImport : System.EnterpriseServices.Internal.ISoapClientImport
    {
        public SoapClientImport() { }
        public void ProcessClientTlbEx(string progId, string virtualRoot, string baseUrl, string authentication, string assemblyName, string typeName) { }
    }
    [System.Runtime.InteropServices.GuidAttribute("F6B6768F-F99E-4152-8ED2-0412F78517FB")]
    public sealed partial class SoapServerTlb : System.EnterpriseServices.Internal.ISoapServerTlb
    {
        public SoapServerTlb() { }
        public void AddServerTlb(string progId, string classId, string interfaceId, string srcTlbPath, string rootWebServer, string inBaseUrl, string inVirtualRoot, string clientActivated, string wellKnown, string discoFile, string operation, out string strAssemblyName, out string typeName) { throw null; }
        public void DeleteServerTlb(string progId, string classId, string interfaceId, string srcTlbPath, string rootWebServer, string baseUrl, string virtualRoot, string operation, string assemblyName, string typeName) { }
    }
    [System.Runtime.InteropServices.GuidAttribute("CAA817CC-0C04-4d22-A05C-2B7E162F4E8F")]
    public sealed partial class SoapServerVRoot : System.EnterpriseServices.Internal.ISoapServerVRoot
    {
        public SoapServerVRoot() { }
        public void CreateVirtualRootEx(string rootWebServer, string inBaseUrl, string inVirtualRoot, string homePage, string discoFile, string secureSockets, string authentication, string operation, out string baseUrl, out string virtualRoot, out string physicalPath) { throw null; }
        public void DeleteVirtualRootEx(string rootWebServer, string inBaseUrl, string inVirtualRoot) { }
        public void GetVirtualRootStatus(string RootWebServer, string inBaseUrl, string inVirtualRoot, out string Exists, out string SSL, out string WindowsAuth, out string Anonymous, out string HomePage, out string DiscoFile, out string PhysicalPath, out string BaseUrl, out string VirtualRoot) { throw null; }
    }
    [System.Runtime.InteropServices.GuidAttribute("5F9A955F-AA55-4127-A32B-33496AA8A44E")]
    public sealed partial class SoapUtility : System.EnterpriseServices.Internal.ISoapUtility
    {
        public SoapUtility() { }
        public void GetServerBinPath(string rootWebServer, string inBaseUrl, string inVirtualRoot, out string binPath) { throw null; }
        public void GetServerPhysicalPath(string rootWebServer, string inBaseUrl, string inVirtualRoot, out string physicalPath) { throw null; }
        public void Present() { }
    }
}