7 references to IsIn
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceReflector.cs (2)
672if (parameter.IsIn && !parameter.IsOut) 684return !paramInfo.IsOut || paramInfo.IsIn;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (2)
575(parameterInfo1.IsIn == parameterInfo2.IsIn) &&
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
1676if (ctype is ParameterModifierType mod && p.IsOut && !p.IsIn)
Microsoft.Extensions.Configuration.Binder (1)
ConfigurationBinder.cs (1)
610if (p.IsOut || p.IsIn || p.ParameterType.IsByRef)
System.Reflection.DispatchProxy (1)
System\Reflection\DispatchProxyGenerator.cs (1)
468bool isOutRef = parameters[i].IsOut && parameters[i].ParameterType.IsByRef && !parameters[i].IsIn;