You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets hashing algorithm to identify script compiled object uniquely
24
+
/// Check available hash algorithms and names here: https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography.hashalgorithm.create?view=net-6.0
/// Initializes a new instance of the <see cref="DuplicateFunctionException"/> class with
13
+
/// a specified function name.
14
+
/// </summary>
15
+
/// <param name="functionName">The name of the function that caused the exception</param>
16
+
/// <param name="message">The message describes the exception</param>
17
+
publicDuplicateFunctionException(stringfunctionName,stringmessage=null):base(message??$"Function '{functionName}' is already registered, cannot be duplicated."){
18
+
FunctionName=functionName;
19
+
}
20
+
21
+
/// <summary>
22
+
/// Gets name of the function that has been re-registered.
0 commit comments