EventParameterModifier Enumeration
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Parameter modifiers for event parameters that describe the parameter type.
Namespace: Microsoft.Xaml
Assembly: Microsoft.Windows.Design.Markup (in Microsoft.Windows.Design.Markup.dll)
Syntax
'Declaration
<SerializableAttribute> _
Public Enumeration EventParameterModifier
'Usage
Dim instance As EventParameterModifier
[SerializableAttribute]
public enum EventParameterModifier
[SerializableAttribute]
public enum class EventParameterModifier
public enum EventParameterModifier
Members
Member name | Description | |
---|---|---|
In | The parameter is an in (by value) parameter. This is the default parameter type in C#. | |
Out | The parameter is an out only parameter. This is indicated in C# by adding the out modifier to the parameter. | |
Ref | This parameter is a reference parameter. This is indicated in C# by adding the ref modifier to the parameter. |