System.Reflection.MonoParameterInfo.GetRequiredCustomModifiers C# (CSharp) Method

GetRequiredCustomModifiers() public method

public GetRequiredCustomModifiers ( ) : Type[]
return Type[]
		Type[] GetRequiredCustomModifiers () {
			Type[] types = GetTypeModifiers (false);
			if (types == null)
				return Type.EmptyTypes;
			return types;
		}