File tree Expand file tree Collapse file tree 8 files changed +1
-19
lines changed
MyDevTools/Components/Pages Expand file tree Collapse file tree 8 files changed +1
-19
lines changed Original file line number Diff line number Diff line change 6464 {
6565 try
6666 {
67- // Use the Clipboard API to copy the text to the clipboard
6867 await ClipboardService .CopyToClipboardAsync (formattedString );
6968 copyConfirmationMessage = " Text copied to clipboard!" ;
7069 }
Original file line number Diff line number Diff line change 113113 {
114114 try
115115 {
116- // Use the Clipboard API to copy the text to the clipboard
117116 await ClipboardService .CopyToClipboardAsync (generatedCodes );
118-
119- // Set the confirmation message
120117 copyConfirmationMessage = " Text copied to clipboard!" ;
121118 }
122119 catch (Exception ex )
Original file line number Diff line number Diff line change 110110 {
111111 try
112112 {
113- // Use the Clipboard API to copy the text to the clipboard
114113 await ClipboardService .CopyToClipboardAsync (cronExpression );
115-
116- // Set the confirmation message
117114 copyConfirmationMessage = " Cron expression copied to clipboard!" ;
118115 }
119116 catch (Exception ex )
Original file line number Diff line number Diff line change 4343@code {
4444 private enum HashAlgorithms
4545 {
46- // Omitted MD5 based on your criteria
4746 SHA256 ,
4847 SHA384 ,
4948 SHA512
Original file line number Diff line number Diff line change 6262 {
6363 try
6464 {
65- // Use the Clipboard API to copy the text to the clipboard
6665 await ClipboardService .CopyToClipboardAsync (decodedJson );
6766 }
6867 catch (Exception ex )
6968 {
70- // Handle the error
69+ Console . WriteLine ( ex . Message );
7170 }
7271 }
7372}
Original file line number Diff line number Diff line change 7171 {
7272 try
7373 {
74- // Use the Clipboard API to copy the text to the clipboard
7574 await ClipboardService .CopyToClipboardAsync (generatedNumbersText );
76-
77- // Set the confirmation message
7875 copyConfirmationMessage = " Text copied to clipboard!" ;
7976 }
8077 catch (Exception ex )
Original file line number Diff line number Diff line change 6262 {
6363 try
6464 {
65- // Use the Clipboard API to copy the text to the clipboard
6665 await ClipboardService .CopyToClipboardAsync (formattedQuery );
67-
68- // Set the confirmation message
6966 copyConfirmationMessage = " Query copied to clipboard!" ;
7067 }
7168 catch (Exception ex )
Original file line number Diff line number Diff line change 7272 {
7373 try
7474 {
75- // Use the Clipboard API to copy the text to the clipboard
7675 await ClipboardService .CopyToClipboardAsync (processedUrl );
77-
78- // Set the confirmation message
7976 copyConfirmationMessage = " Text copied to clipboard!" ;
8077 }
8178 catch (Exception ex )
You can’t perform that action at this time.
0 commit comments