-
Notifications
You must be signed in to change notification settings - Fork 308
Expand file tree
/
Copy pathextern.ts
More file actions
950 lines (909 loc) · 36.9 KB
/
extern.ts
File metadata and controls
950 lines (909 loc) · 36.9 KB
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
import { type Type } from "../ast/types/IType.js";
import { type Generation } from "../context/generation-info.js";
import { lazy } from "../utils/lazy.js";
/**
* Provides access to external type references for C# code generation.
* Offers pre-defined references to commonly used .NET Framework types, third-party libraries,
* and testing frameworks.
*/
export class Extern {
constructor(private readonly generation: Generation) {}
protected get csharp() {
return this.generation.csharp;
}
/**
* Pre-defined references to commonly used System namespace classes and types.
* This object provides convenient access to standard .NET Framework types
* without having to manually create class references.
*
* All values are lazy initialized - simple references are cached, functions remain callable.
*/
readonly System = lazy({
/**
* Creates a reference to System.Action<T> delegate.
*
* @param typeParameters - The generic type parameters (optional)
* @returns A ClassReference for Action<T>
*/
Action: (typeParameters?: Type[]) =>
this.csharp.classReference({
name: "Action",
namespace: "System",
generics: typeParameters ? typeParameters : undefined,
multipartMethodName: null, // can not be added to multipart form
multipartMethodNameForCollection: null, // can not be added to multipart form
isReferenceType: true // is historically a "reference" type
}),
/**
* Creates a reference to System.Func<TArgs..., TResult> delegate.
*
* @param typeParameters - The parameter types (optional)
* @param returnType - The return type (optional)
* @returns A ClassReference for Func<TArgs..., TResult>
*/
Func: (typeParameters?: Type[], returnType?: Type) =>
this.csharp.classReference({
name: "Func",
namespace: "System",
generics: typeParameters
? returnType
? [...typeParameters, returnType]
: typeParameters
: returnType
? [returnType]
: undefined,
multipartMethodName: null, // can not be added to multipart form
multipartMethodNameForCollection: null, // can not be added to multipart form,
isReferenceType: true // is historically a "reference" type
}),
/**
* Reference to System.DateOnly class.
*/
DateOnly: () =>
this.csharp.classReference({
name: "DateOnly",
namespace: "System"
}),
/**
* Reference to System.DateTime class.
*/
DateTime: () =>
this.csharp.classReference({
name: "DateTime",
namespace: "System"
}),
/**
* Reference to System.Enum class.
*/
Enum: () =>
this.csharp.classReference({
name: "Enum",
namespace: "System"
}),
/**
* Reference to System.Exception class.
*/
Exception: () =>
this.csharp.classReference({
name: "Exception",
namespace: "System"
}),
/**
* Creates a reference to System.ReadOnlyMemory<T>.
*
* @param type - The element type
* @returns A ClassReference for ReadOnlyMemory<T>
*/
ReadOnlyMemory: (type: Type) =>
this.csharp.classReference({
name: "ReadOnlyMemory",
namespace: "System",
generics: [type]
}),
/**
* Reference to System.SerializableAttribute class.
*/
Serializable: () =>
this.csharp.classReference({
name: "SerializableAttribute",
namespace: "System"
}),
/**
* Reference to System.String class.
*/
String: () =>
this.csharp.classReference({
name: "String",
namespace: "System"
}),
/**
* Reference to System.Type class.
*
* @returns A ClassReference for System.Type
*/
Type: () =>
this.csharp.classReference({
name: "Type",
namespace: "System",
isReferenceType: true,
multipartMethodName: null, // can not be added to multipart form
multipartMethodNameForCollection: null, // can not be added to multipart form
fullyQualified: true
}),
/**
* Reference to System.TimeSpan class.
*/
TimeSpan: () =>
this.csharp.classReference({
name: "TimeSpan",
namespace: "System"
}),
/**
* Reference to System.Uri class.
*/
Uri: () =>
this.csharp.classReference({
name: "Uri",
namespace: "System"
}),
/**
* Reference to System.UriBuilder class.
*/
UriBuilder: () =>
this.csharp.classReference({
name: "UriBuilder",
namespace: "System"
}),
/**
* Runtime namespace references.
*/
Runtime: () =>
lazy({
/**
* Serialization namespace references.
*/
Serialization: () =>
lazy({
/**
* Reference to System.Runtime.Serialization.EnumMemberAttribute class.
*/
EnumMember: () =>
this.csharp.classReference({
name: "EnumMemberAttribute",
namespace: "System.Runtime.Serialization"
})
})
}),
/**
* Collections namespace references.
*/
Collections: () =>
lazy({
/**
* Generic collections namespace references.
*/
Generic: () =>
lazy({
/**
* Creates a reference to IAsyncEnumerable<T>.
*
* @param elementType - The element type (optional)
* @returns A ClassReference for IAsyncEnumerable<T>
*/
IAsyncEnumerable: (elementType?: Type) => {
return this.csharp.classReference({
name: "IAsyncEnumerable",
namespace: "System.Collections.Generic",
generics: elementType ? [elementType] : undefined
});
},
/**
* Creates a reference to IEnumerable<T>.
*
* @param elementType - The element type (optional)
* @returns A ClassReference for IEnumerable<T>
*/
IEnumerable: (elementType?: Type) => {
return this.csharp.classReference({
name: "IEnumerable",
namespace: "System.Collections.Generic",
generics: elementType ? [elementType] : undefined
});
},
/**
* Creates a reference to KeyValuePair<TKey, TValue>.
*
* @param keyType - The key type (optional)
* @param valueType - The value type (optional)
* @returns A ClassReference for KeyValuePair<TKey, TValue>
*/
KeyValuePair: (keyType?: Type, valueType?: Type) => {
return this.csharp.classReference({
name: "KeyValuePair",
namespace: "System.Collections.Generic",
generics: keyType && valueType ? [keyType, valueType] : undefined
});
},
/**
* Creates a reference to List<T>.
*
* @param elementType - The element type (optional)
* @returns A ClassReference for List<T>
*/
List: (elementType?: Type) => {
return this.csharp.classReference({
name: "List",
namespace: "System.Collections.Generic",
generics: elementType ? [elementType] : undefined,
isCollection: true
});
},
/**
* Creates a reference to HashSet<T>.
*
* @param elementType - The element type (optional)
* @returns A ClassReference for HashSet<T>
*/
HashSet: (elementType?: Type) => {
return this.csharp.classReference({
name: "HashSet",
namespace: "System.Collections.Generic",
generics: elementType ? [elementType] : undefined,
isCollection: true
});
},
/**
* Creates a reference to Dictionary<TKey, TValue>.
*
* @param keyType - The key type (optional)
* @param valueType - The value type (optional)
* @returns A ClassReference for Dictionary<TKey, TValue>
*/
Dictionary: (keyType?: Type, valueType?: Type) => {
return this.csharp.classReference({
name: "Dictionary",
namespace: "System.Collections.Generic",
generics: keyType && valueType ? [keyType, valueType] : undefined,
isCollection: true
});
},
/**
* Creates a reference to IDictionary<TKey, TValue>.
*
* @param keyType - The key type
* @param valueType - The value type
* @returns A ClassReference for IDictionary<TKey, TValue>
*/
IDictionary: (keyType: Type, valueType: Type) =>
this.csharp.classReference({
name: "IDictionary",
namespace: "System.Collections.Generic",
generics: [keyType, valueType]
})
}),
/**
* LINQ namespace references.
*/
Linq: () =>
lazy({
/**
* Reference to System.Linq.Enumerable class.
*/
Enumerable: () =>
this.csharp.classReference({
name: "Enumerable",
namespace: "System.Linq"
})
})
}),
/**
* Globalization namespace references.
*/
Globalization: () =>
lazy({
/**
* Reference to System.Globalization.DateTimeStyles enum.
*/
DateTimeStyles: () =>
this.csharp.classReference({
name: "DateTimeStyles",
namespace: "System.Globalization"
})
}),
/**
* LINQ namespace references.
*/
Linq: () =>
lazy({
/**
* Reference to System.Linq.Enumerable class.
*/
Enumerable: () =>
this.csharp.classReference({
name: "Enumerable",
namespace: "System.Linq"
})
}),
/**
* Net namespace references.
*/
Net: () =>
lazy({
/**
* HTTP namespace references.
*/
Http: () =>
lazy({
/**
* Reference to System.Net.Http.HttpClient class.
*/
HttpClient: () =>
this.csharp.classReference({
name: "HttpClient",
namespace: "System.Net.Http"
}),
/**
* Reference to System.Net.Http.HttpMethod class.
*/
HttpMethod: () =>
this.csharp.classReference({
name: "HttpMethod",
namespace: "System.Net.Http"
}),
/**
* Reference to System.Net.Http.Headers.HttpResponseHeaders class.
*/
HttpResponseHeaders: () =>
this.csharp.classReference({
name: "HttpResponseHeaders",
namespace: "System.Net.Http.Headers"
})
}),
/**
* ServerSentEvents namespace references.
*/
ServerSentEvents: () =>
lazy({
/**
* Reference to System.Net.ServerSentEvents.SseEvent class.
*/
SseEvent: () =>
this.csharp.classReference({
name: "SseEvent",
namespace: "System.Net.ServerSentEvents"
}),
/**
* Reference to System.Net.ServerSentEvents.SseParser class.
*/
SseParser: () =>
this.csharp.classReference({
name: "SseParser",
namespace: "System.Net.ServerSentEvents"
})
}),
/**
* WebSockets namespace references.
*/
WebSockets: () =>
lazy({
/**
* Reference to System.Net.WebSockets.ClientWebSocketOptions class.
*/
ClientWebSocketOptions: () =>
this.csharp.classReference({
name: "ClientWebSocketOptions",
namespace: "System.Net.WebSockets"
})
})
}),
/**
* IO namespace references.
*/
IO: () =>
lazy({
/**
* Reference to System.IO.MemoryStream class.
*/
MemoryStream: () =>
this.csharp.classReference({
name: "MemoryStream",
namespace: "System.IO"
}),
/**
* Reference to System.IO.Stream class.
*/
Stream: () =>
this.csharp.classReference({
name: "Stream",
namespace: "System.IO"
}),
/**
* Reference to System.IO.StreamReader class.
*/
StreamReader: () =>
this.csharp.classReference({
name: "StreamReader",
namespace: "System.IO"
})
}),
/**
* Text namespace references.
*/
Text: () =>
lazy({
/**
* Reference to System.Text.Encoding class.
*/
Encoding: () =>
this.csharp.classReference({
name: "Encoding",
namespace: "System.Text"
}),
/**
* Reference to System.Text.Encoding.UTF8 class.
*/
Encoding_UTF8: () =>
this.csharp.classReference({
name: "UTF8",
enclosingType: this.csharp.classReference({
name: "Encoding",
namespace: "System.Text"
})
}),
/**
* JSON namespace references.
*/
Json: () =>
lazy({
/**
* Reference to System.Text.Json.JsonElement class.
*/
JsonElement: () =>
this.csharp.classReference({
name: "JsonElement",
namespace: "System.Text.Json"
}),
/**
* Reference to System.Text.Json.JsonDocument class.
*/
JsonDocument: () =>
this.csharp.classReference({
name: "JsonDocument",
namespace: "System.Text.Json"
}),
/**
* Reference to System.Text.Json.JsonException class.
*/
JsonException: () =>
this.csharp.classReference({
name: "JsonException",
namespace: "System.Text.Json"
}),
/**
* Reference to System.Text.Json.Utf8JsonReader class.
*/
Utf8JsonReader: () =>
this.csharp.classReference({
name: "Utf8JsonReader",
namespace: "System.Text.Json"
}),
/**
* Reference to System.Text.Json.JsonSerializerOptions class.
*/
JsonSerializerOptions: () =>
this.csharp.classReference({
name: "JsonSerializerOptions",
namespace: "System.Text.Json"
}),
/**
* Reference to System.Text.Json.JsonSerializer class.
*/
JsonSerializer: () =>
this.csharp.classReference({
name: "JsonSerializer",
namespace: "System.Text.Json"
}),
/**
* Reference to System.Text.Json.Utf8JsonWriter class.
*/
Utf8JsonWriter: () =>
this.csharp.classReference({
name: "Utf8JsonWriter",
namespace: "System.Text.Json"
}),
/**
* JSON Nodes namespace references.
*/
Nodes: () =>
lazy({
/**
* Reference to System.Text.Json.Nodes.JsonNode class.
*/
JsonNode: () =>
this.csharp.classReference({
name: "JsonNode",
namespace: "System.Text.Json.Nodes"
}),
/**
* Reference to System.Text.Json.Nodes.JsonObject class.
*/
JsonObject: () =>
this.csharp.classReference({
name: "JsonObject",
namespace: "System.Text.Json.Nodes"
})
}),
/**
* JSON Serialization namespace references.
*/
Serialization: () =>
lazy({
/**
* Reference to System.Text.Json.Serialization.IJsonOnDeserialized interface.
*/
IJsonOnDeserialized: () =>
this.csharp.classReference({
name: "IJsonOnDeserialized",
namespace: "System.Text.Json.Serialization"
}),
/**
* Reference to System.Text.Json.Serialization.IJsonOnSerializing interface.
*/
IJsonOnSerializing: () =>
this.csharp.classReference({
name: "IJsonOnSerializing",
namespace: "System.Text.Json.Serialization"
}),
/**
* Reference to System.Text.Json.Serialization.JsonOnDeserializedAttribute class.
*/
JsonOnDeserializedAttribute: () =>
this.csharp.classReference({
name: "JsonOnDeserializedAttribute",
namespace: "System.Text.Json.Serialization"
}),
/**
* Reference to System.Text.Json.Serialization.JsonExtensionDataAttribute class.
*/
JsonExtensionData: () =>
this.csharp.classReference({
name: "JsonExtensionDataAttribute",
namespace: "System.Text.Json.Serialization"
}),
/**
* Creates a reference to JsonConverter<T>.
*
* @param typeToConvert - The type to convert (optional)
* @returns A ClassReference for JsonConverter<T>
*/
JsonConverter: (typeToConvert?: Type) => {
return this.csharp.classReference({
name: "JsonConverter",
namespace: "System.Text.Json.Serialization",
generics: typeToConvert ? [typeToConvert] : undefined
});
},
/**
* Reference to System.Text.Json.Serialization.JsonIgnoreAttribute class.
*/
JsonIgnore: () =>
this.csharp.classReference({
name: "JsonIgnoreAttribute",
namespace: "System.Text.Json.Serialization"
}),
/**
* Reference to System.Text.Json.Serialization.JsonPropertyNameAttribute class.
*/
JsonPropertyName: () =>
this.csharp.classReference({
name: "JsonPropertyNameAttribute",
namespace: "System.Text.Json.Serialization"
})
})
})
}),
/**
* Threading namespace references.
*/
Threading: () =>
lazy({
/**
* Reference to System.Threading.CancellationToken struct.
*/
CancellationToken: () =>
this.csharp.classReference({
name: "CancellationToken",
namespace: "System.Threading"
}),
/**
* Tasks namespace references.
*/
Tasks: () =>
lazy({
/**
* Creates a reference to Task<T>.
*
* @param ofType - The result type (optional)
* @returns A ClassReference for Task<T>
*/
Task: (ofType?: Type) => {
return this.csharp.classReference({
name: "Task",
namespace: "System.Threading.Tasks",
generics: ofType ? [ofType] : undefined
});
},
/**
* Creates a reference to ValueTask or ValueTask<T>.
*
* @param ofType - The result type (optional)
* @returns A ClassReference for ValueTask<T>
*/
ValueTask: (ofType?: Type) => {
return this.csharp.classReference({
name: "ValueTask",
namespace: "System.Threading.Tasks",
generics: ofType ? [ofType] : undefined
});
}
})
}),
/**
* ComponentModel namespace references.
*/
ComponentModel: () =>
lazy({
/**
* Reference to System.ComponentModel.INotifyPropertyChanged interface.
*/
INotifyPropertyChanged: () =>
this.csharp.classReference({
name: "INotifyPropertyChanged",
namespace: "System.ComponentModel"
}),
/**
* Reference to System.ComponentModel.PropertyChangedEventHandler delegate.
*/
PropertyChangedEventHandler: () =>
this.csharp.classReference({
name: "PropertyChangedEventHandler",
namespace: "System.ComponentModel"
})
}),
/**
* Reference to System.IAsyncDisposable interface.
*/
IAsyncDisposable: () =>
this.csharp.classReference({
name: "IAsyncDisposable",
namespace: "System"
}),
/**
* Reference to System.IDisposable interface.
*/
IDisposable: () =>
this.csharp.classReference({
name: "IDisposable",
namespace: "System"
})
});
/**
* Pre-defined references to NUnit testing framework classes and attributes.
* This object provides convenient access to NUnit test attributes
* for generating test classes and methods.
*
* All values are lazy initialized - simple references are cached.
*/
readonly NUnit = lazy({
/**
* NUnit Framework namespace references.
*/
Framework: () =>
lazy({
/**
* Reference to NUnit.Framework.TestFixtureAttribute class.
*/
TestFixture: () =>
this.csharp.classReference({
name: "TestFixture",
namespace: "NUnit.Framework"
}),
/**
* Reference to NUnit.Framework.TestAttribute class.
*/
Test: () =>
this.csharp.classReference({
name: "Test",
namespace: "NUnit.Framework"
}),
/**
* Reference to NUnit.Framework.OneTimeTearDownAttribute class.
*/
OneTimeTearDown: () =>
this.csharp.classReference({
name: "OneTimeTearDown",
namespace: "NUnit.Framework"
}),
/**
* Reference to NUnit.Framework.OneTimeSetUpAttribute class.
*/
OneTimeSetUp: () =>
this.csharp.classReference({
name: "OneTimeSetUp",
namespace: "NUnit.Framework"
}),
/**
* Reference to NUnit.Framework.SetUpFixtureAttribute class.
*/
SetUpFixture: () =>
this.csharp.classReference({
name: "SetUpFixture",
namespace: "NUnit.Framework"
}),
/**
* Reference to NUnit.Framework.ParallelizableAttribute class.
*/
Parallelizable: () =>
this.csharp.classReference({
name: "Parallelizable",
namespace: "NUnit.Framework"
})
})
});
/**
* Pre-defined references to OneOf library classes for union types.
* This object provides convenient access to OneOf union type classes
* for creating discriminated unions in C#.
*
* Functions with parameters remain callable.
*/
readonly OneOf = lazy({
/**
* Creates a reference to OneOf<T1, T2, ...>.
*
* @param generics - Array of generic type parameters (optional)
* @returns A ClassReference for OneOf<T1, T2, ...>
*/
OneOf: (generics?: Type[]) => {
return this.csharp.classReference({
name: "OneOf",
namespace: "OneOf",
generics
});
},
/**
* Creates a reference to OneOfBase<T1, T2, ...>.
*
* @param generics - Array of generic type parameters (optional)
* @returns A ClassReference for OneOfBase<T1, T2, ...>
*/
OneOfBase: (generics?: Type[]) => {
return this.csharp.classReference({
name: "OneOfBase",
namespace: "OneOf",
generics
});
}
});
/**
* Pre-defined references to Google Protocol Buffers classes.
* This object provides convenient access to Google.Protobuf types
* for working with Protocol Buffer well-known types.
*
* All values are lazy initialized - simple references are cached.
*/
readonly Google = lazy({
/**
* Protocol Buffers namespace references.
*/
Protobuf: () =>
lazy({
/**
* Reference to Google.Protobuf.ByteString class.
*/
ByteString: () =>
this.csharp.classReference({
name: "ByteString",
namespace: "Google.Protobuf"
}),
/**
* Well-known types namespace references with namespace alias.
*/
WellKnownTypes: () =>
lazy({
/**
* Reference to Google.Protobuf.WellKnownTypes.Struct class.
*/
Struct: () =>
this.csharp.classReference({
name: "Struct",
namespace: "Google.Protobuf.WellKnownTypes",
namespaceAlias: "WellKnownProto"
}),
/**
* Reference to Google.Protobuf.WellKnownTypes.Value class.
*/
Value: () =>
this.csharp.classReference({
name: "Value",
namespace: "Google.Protobuf.WellKnownTypes",
namespaceAlias: "WellKnownProto"
}),
/**
* Reference to Google.Protobuf.WellKnownTypes.ListValue class.
*/
ListValue: () =>
this.csharp.classReference({
name: "ListValue",
namespace: "Google.Protobuf.WellKnownTypes",
namespaceAlias: "WellKnownProto"
}),
/**
* Reference to Google.Protobuf.WellKnownTypes.Timestamp class.
*/
Timestamp: () =>
this.csharp.classReference({
name: "Timestamp",
namespace: "Google.Protobuf.WellKnownTypes",
namespaceAlias: "WellKnownProto"
})
})
})
});
/**
* Pre-defined references to WireMock.Net testing/mocking library classes.
* This object provides convenient access to WireMock types for creating mock servers
* and testing HTTP interactions.
*
* All values are lazy initialized - simple references are cached.
*/
readonly WireMock = lazy({
/**
* Reference to WireMock.Server.WireMockServer class.
*/
Server: () =>
this.csharp.classReference({
name: "WireMockServer",
namespace: "WireMock.Server"
}),
/**
* Reference to WireMock.Settings.WireMockServerSettings class.
*/
WireMockServerSettings: () =>
this.csharp.classReference({
name: "WireMockServerSettings",
namespace: "WireMock.Settings"
}),
/**
* Reference to WireMock.Logging.WireMockConsoleLogger class.
*/
WireMockConsoleLogger: () =>
this.csharp.classReference({
name: "WireMockConsoleLogger",
namespace: "WireMock.Logging"
})
});
/**
* Pre-defined references to gRPC library classes.
* This object provides convenient access to Grpc.Core types for working with
* gRPC remote procedure calls.
*
* All values are lazy initialized - simple references are cached.
*/
readonly Grpc = lazy({
/**
* Grpc.Core namespace references.
*/
Core: () =>
lazy({
/**
* Reference to Grpc.Core.RpcException class.
*/
RpcException: () =>
this.csharp.classReference({
name: "RpcException",
namespace: "Grpc.Core"
})
})
});
}