We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad352ae commit d803365Copy full SHA for d803365
src/Smdn.Net.MuninNode/Smdn.Net.MuninNode/MuninNodeOptions.cs
@@ -124,6 +124,15 @@ public MuninNodeOptions Clone()
124
=> (MuninNodeOptions)MemberwiseClone();
125
#endif
126
127
+ /// <summary>
128
+ /// Configure this instance to have the same values as the instance passed as an argument.
129
+ /// </summary>
130
+ /// <param name="baseOptions">
131
+ /// A <see cref="MuninNodeOptions"/> that holds the values that are used to configure this instance.
132
+ /// </param>
133
+ /// <exception cref="ArgumentNullException">
134
+ /// <paramref name="baseOptions"/> is <see langword="null"/>.
135
+ /// </exception>
136
protected internal virtual void Configure(MuninNodeOptions baseOptions)
137
{
138
if (baseOptions is null)
0 commit comments