SemanticMessageBuilder.Semantic<T1, T2> Method (String, ValueTuple<String, T1>, ValueTuple<String, T2>) |
Create a semantic message with 2 parameters.
Namespace: PostSharp.Patterns.Diagnostics
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 6.9.11.0 (6.9.11.0)
C#
public static SemanticMessage<T1, T2> Semantic<T1, T2>( string name, in (string , T1 ) parameter1, in (string , T2 ) parameter2 )
Parameters
- name
- Type: System.String
Name of the message. - parameter1
- Type: ValueTuple<String, T1>
Name and value of the first parameter wrapped as a tuple. - parameter2
- Type: ValueTuple<String, T2>
Name and value of the second parameter wrapped as a tuple.
Type Parameters
- T1
- Type of the first parameter value.
- T2
- Type of the second parameter value.