Spring.Objects.Factory.Support.ObjectDefinitionBuilder.SetInitMethodName C# (CSharp) Метод

SetInitMethodName() публичный Метод

Sets the name of the init method for this definition.
public SetInitMethodName ( string methodName ) : ObjectDefinitionBuilder
methodName string Name of the method.
Результат ObjectDefinitionBuilder
        public ObjectDefinitionBuilder SetInitMethodName(string methodName)
        {
            objectDefinition.InitMethodName = methodName;
            return this;
        }