Ejemplo n.º 1
0
 /// <summary>
 /// Generate the description string.
 /// </summary>
 /// <returns>The string.</returns>
 public override string ToString()
 {
     return(string.Format(CultureInfo.CurrentCulture,
                          Resources.InvokingMethodOperation,
                          TypeBeingConstructed.GetTypeInfo().Name,
                          this.methodSignature));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Generate the string describing what parameter was being resolved.
 /// </summary>
 /// <returns>The description string.</returns>
 public override string ToString()
 {
     return(string.Format(CultureInfo.CurrentCulture,
                          Resources.MethodArgumentResolveOperation,
                          this.parameterName, TypeBeingConstructed.GetTypeInfo().Name, this.methodSignature));
 }
 /// <summary>
 /// Generate the description of this operation.
 /// </summary>
 /// <returns>The string.</returns>
 public override string ToString()
 {
     return(string.Format(CultureInfo.CurrentCulture,
                          this.GetDescriptionFormat(),
                          TypeBeingConstructed.GetTypeInfo().Name, this.propertyName));
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Generate the description of this operation.
 /// </summary>
 /// <returns>The string.</returns>
 public override string ToString()
 {
     return($"{GetDescriptionFormat()}{TypeBeingConstructed.GetTypeInfo().Name}{PropertyName}");
 }
 /// <summary>
 /// Generate the string describing what parameter was being resolved.
 /// </summary>
 /// <returns>The description string.</returns>
 public override string ToString()
 {
     return($"{Constants.MethodArgumentResolveOperation}{ParameterName}" +
            $"{TypeBeingConstructed.GetTypeInfo().Name}{MethodSignature}");
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Generate the description string.
 /// </summary>
 /// <returns>The string.</returns>
 public override string ToString()
 {
     return($"{Constants.InvokingMethodOperation}{TypeBeingConstructed.GetTypeInfo().Name}{MethodSignature}");
 }