LogRecordBuilder.SetParameter<T> Method (Int32, String, ParameterDirection, String, T) |
Sets the value of a given parameter and uses the default formatter.
Namespace: PostSharp.Patterns.Diagnostics.RecordBuilders
Assembly: PostSharp.Patterns.Diagnostics (in PostSharp.Patterns.Diagnostics.dll) Version: 5.0.55.0 (5.0.55.0)
C#
public void SetParameter<T>( int index, string parameterName, ParameterDirection direction, string typeName, T value )
Parameters
- index
- Type: System.Int32
Index of the parameter in the list of method parameters. - parameterName
- Type: System.String
Name of the parameter (only included if the IncludeParameterName property is true). - direction
- Type: PostSharp.Patterns.Diagnostics.RecordBuilders.ParameterDirection
In, Out or Ref. - typeName
- Type: System.String
Formatted name of the type T (only included if the IncludeParameterType property is true). - value
- Type: T
Value of the parameter (only included if the IncludeParameterValue property is true).
Type Parameters
- T
- Type of the parameter.