@@ -642,6 +642,18 @@ public static void SetConnectionMode_stub(this Telegram.Native.Calls.VoipGroupMa
642
642
throw new RuntimeException ( ex ) ;
643
643
}
644
644
}
645
+ public static void SetEncryptDecrypt_stub ( this Telegram . Native . Calls . VoipGroupManager sender , Telegram . Native . Calls . EncryptGroupCallDataDelegate encryptData , Telegram . Native . Calls . DecryptGroupCallDataDelegate decryptData )
646
+ {
647
+ try
648
+ {
649
+ sender . SetEncryptDecrypt ( encryptData , decryptData ) ;
650
+ }
651
+ catch ( Exception ex )
652
+ {
653
+ Logger . Error ( Environment . StackTrace ) ;
654
+ throw new RuntimeException ( ex ) ;
655
+ }
656
+ }
645
657
public static void SetJoinResponsePayload_stub ( this Telegram . Native . Calls . VoipGroupManager sender , string payload )
646
658
{
647
659
try
@@ -4786,6 +4798,21 @@ public static bool IsSupported_stub(string geographicRegionCode)
4786
4798
}
4787
4799
}
4788
4800
}
4801
+ public static class Language_stub
4802
+ {
4803
+ public static bool IsWellFormed_stub ( string languageTag )
4804
+ {
4805
+ try
4806
+ {
4807
+ return Windows . Globalization . Language . IsWellFormed ( languageTag ) ;
4808
+ }
4809
+ catch ( Exception ex )
4810
+ {
4811
+ Logger . Error ( Environment . StackTrace ) ;
4812
+ throw new RuntimeException ( ex ) ;
4813
+ }
4814
+ }
4815
+ }
4789
4816
public static class ElementCompositionPreview_stub
4790
4817
{
4791
4818
public static Windows . UI . Composition . Visual GetElementChildVisual_stub ( Windows . UI . Xaml . UIElement element )
@@ -6685,6 +6712,36 @@ public static string FormatUInt_stub(this Windows.Globalization.NumberFormatting
6685
6712
}
6686
6713
}
6687
6714
}
6715
+ public static class INumberFormatter2_stub
6716
+ {
6717
+ public static string FormatInt_stub ( this Windows . Globalization . NumberFormatting . INumberFormatter2 sender , long value )
6718
+ {
6719
+ try
6720
+ {
6721
+ return sender . FormatInt ( value ) ;
6722
+ }
6723
+ catch ( Exception ex )
6724
+ {
6725
+ Logger . Error ( Environment . StackTrace ) ;
6726
+ throw new RuntimeException ( ex ) ;
6727
+ }
6728
+ }
6729
+ }
6730
+ public static class INumberParser_stub
6731
+ {
6732
+ public static long ? ParseInt_stub ( this Windows . Globalization . NumberFormatting . INumberParser sender , string text )
6733
+ {
6734
+ try
6735
+ {
6736
+ return sender . ParseInt ( text ) ;
6737
+ }
6738
+ catch ( Exception ex )
6739
+ {
6740
+ Logger . Error ( Environment . StackTrace ) ;
6741
+ throw new RuntimeException ( ex ) ;
6742
+ }
6743
+ }
6744
+ }
6688
6745
public static class OpusOutput_stub
6689
6746
{
6690
6747
public static void Transcode_stub ( this Telegram . Native . Opus . OpusOutput sender , string fileName )
0 commit comments