Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/DurableTask.AzureStorage/MessageManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ public void BindToName(Type serializedType, out string assemblyName, out string
TypeNameSerializationHelper.BindToName(customBinder, serializedType, out assemblyName, out typeName);
}

// CodeQL [SM05220] False positive: customer-owned Storage is inside the DTFx trust boundary.
public Type BindToType(string assemblyName, string typeName)
{
return TypeNameSerializationHelper.BindToType(customBinder, assemblyName, typeName);
Expand All @@ -391,6 +392,7 @@ public override void BindToName(Type serializedType, out string assemblyName, ou
TypeNameSerializationHelper.BindToName(customBinder, serializedType, out assemblyName, out typeName);
}

// CodeQL [SM05220] False positive: customer-owned Storage is inside the DTFx trust boundary.
public override Type BindToType(string assemblyName, string typeName)
{
return TypeNameSerializationHelper.BindToType(customBinder, assemblyName, typeName);
Expand Down
Loading