12 references to TryGetInvocations
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Delegate.cs (6)
265if (!TryGetInvocations(out ReadOnlySpan<Wrapper> invocations)) 282if (TryGetInvocations(out ReadOnlySpan<Wrapper> invocations)) 323ReadOnlySpan<Wrapper> followList = d.TryGetInvocations(out ReadOnlySpan<Wrapper> span) ? span : new ReadOnlySpan<Wrapper>(ref wrapper); 325if (!TryGetInvocations(out ReadOnlySpan<Wrapper> invocationList)) 385bool isMulticast = TryGetInvocations(out ReadOnlySpan<Wrapper> invocationList); 387if (!d.TryGetInvocations(out ReadOnlySpan<Wrapper> otherInvocations))
System\Delegate.NativeAot.cs (6)
31if (TryGetInvocations(out ReadOnlySpan<Wrapper> invocations)) 285if (TryGetInvocations(out ReadOnlySpan<Wrapper> invocations)) 304if (TryGetInvocations(out ReadOnlySpan<Wrapper> invocations)) 458if (TryGetInvocations(out ReadOnlySpan<Wrapper> invocations)) 459return other.TryGetInvocations(out ReadOnlySpan<Wrapper> otherInvocations) && invocations.SequenceEqual(otherInvocations); 485if (TryGetInvocations(out ReadOnlySpan<Wrapper> invocations))