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;
        }