| title | Troubleshooting |
|---|---|
| sidebar_position | 11 |
| id | troubleshooting |
| license | Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. |
This page covers common C# runtime issues and fixes.
Symptom: Type not registered: ...
Cause: A user type was serialized/deserialized without registration.
Fix:
Fory fory = Fory.Builder().Build();
fory.Register<MyType>(100);Ensure the same type-ID/name mapping exists on both write and read sides.
Cause: The payload is not an xlang Fory frame, or it came from a peer/runtime mode that does not emit the xlang header C# requires.
Fix: Ensure the payload was produced by an xlang-compatible Fory runtime. C# always expects the
xlang header and does not expose a separate Xlang(...) builder option.
Fory writer = Fory.Builder().Compatible(true).Build();
Fory reader = Fory.Builder().Compatible(true).Build();Symptom: InvalidDataException while deserializing generated struct types.
Cause: Compatible(false) with CheckStructVersion(true) enforces exact schema hashes.
Fix options:
- Enable
Compatible(true)for schema evolution. - Keep writer/reader model definitions in sync.
Symptom: Stack overflow-like recursion or graph reconstruction issues.
Cause: Cyclic graphs with TrackRef(false).
Fix:
Fory fory = Fory.Builder().TrackRef(true).Build();Cause: Sharing a single Fory instance across threads.
Fix: Use BuildThreadSafe().
Run C# tests from repo root:
cd csharp
dotnet test Fory.sln -c Release