Amazon.Runtime.Internal.Settings.PersistenceManager.disableWatcher C# (CSharp) 메소드

disableWatcher() 개인적인 메소드

private disableWatcher ( string type ) : void
type string
리턴 void
        void disableWatcher(string type)
        {
            SettingsWatcher sw = null;
            if (this._watchers.TryGetValue(type, out sw))
            {
                sw.Enable = false;
            }
        }