Amib.Threading.WIGStartInfo.ThrowIfReadOnly C# (CSharp) Method

ThrowIfReadOnly() protected method

protected ThrowIfReadOnly ( ) : void
return void
        protected void ThrowIfReadOnly()
        {
            if (_readOnly)
            {
                throw new NotSupportedException("This is a readonly instance and set is not supported");
            }
        }