Class InternalApiAttribute
Marks APIs that are considered internal to Akka and may change at any point in time without any warning.
For example, this annotation should be used for code that should be inherently internal, but it cannot be due to limitations of .NET encapsulation in areas such as inheritance or serialization.
If a method/class annotated with this method has a xdoc comment, the first line MUST include in order to be easily identifiable from generated documentation. Additional information may be put on the same line as the INTERNAL API comment in order to clarify further.
Inherited Members
Namespace: Akka.Annotations
Assembly: Akka.dll
Syntax
[AttributeUsage(AttributeTargets.Module|AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Constructor|AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Field|AttributeTargets.Interface, Inherited = true, AllowMultiple = false)]
public sealed class InternalApiAttribute : Attribute