2 implementations of TryGetInfoForParamIndex
Microsoft.Interop.SourceGeneration (2)
MarshallingInfoParser.cs (1)
325public bool TryGetInfoForParamIndex(AttributeData attrData, int paramIndex, GetMarshallingInfoCallback marshallingInfoCallback, IElementInfoProvider rootProvider, [NotNullWhen(true)] out TypePositionInfo? info)
MethodSignatureElementInfoProvider.cs (1)
60public bool TryGetInfoForParamIndex(AttributeData attrData, int paramIndex, GetMarshallingInfoCallback marshallingInfoCallback, IElementInfoProvider rootProvider, out TypePositionInfo info)
2 references to TryGetInfoForParamIndex
Microsoft.Interop.SourceGeneration (2)
MarshallingInfoParser.cs (2)
158return provider.TryGetInfoForParamIndex(attrData, paramIndex, marshallingInfoCallback, provider, out info); 337return _innerProvider.TryGetInfoForParamIndex(attrData, paramIndex, marshallingInfoCallback, rootProvider, out info);