SemanticMessageBuilder.Semantic<T1, T2> Method (String, String, T1, String, T2) |
Create a semantic message with 2 parameters (using tuples).
Namespace: PostSharp.Patterns.Diagnostics
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 6.5.21.0 (6.5.21.0)
C#
public static SemanticMessage<T1, T2> Semantic<T1, T2>( string name, string parameterName1, T1 parameterValue1, string parameterName2, T2 parameterValue2 )
Parameters
- name
- Type: System.String
Name of the message. - parameterName1
- Type: System.String
Name of the first parameter. - parameterValue1
- Type: T1
Name of the first parameter. - parameterName2
- Type: System.String
Name of the second parameter. - parameterValue2
- Type: T2
Name of the second parameter.
Type Parameters
- T1
- Type of the first parameter value.
- T2
- Type of the second parameter value.