Rhino.Delegator.GetDefaultValue C# (CSharp) Method

GetDefaultValue() public method

Note that this method does not get forwarded to the delegee if the hint parameter is null, ScriptRuntime.ScriptableClass or ScriptRuntime.FunctionClass.
Note that this method does not get forwarded to the delegee if the hint parameter is null, ScriptRuntime.ScriptableClass or ScriptRuntime.FunctionClass. Instead the object itself is returned.
public GetDefaultValue ( Type hint ) : object
hint System.Type the type hint
return object
		public virtual object GetDefaultValue(Type hint)
		{
			return (hint == null || hint == ScriptRuntime.ScriptableClass || hint == ScriptRuntime.FunctionClass) ? this : obj.GetDefaultValue(hint);
		}