Amazon.Runtime.Internal.Auth.SharedCredentialsFile.DeleteProfile C# (CSharp) 메소드

DeleteProfile() 공개 메소드

Deletes the section with the given ProfileName from the SharedCredentialsFile, if one exists. Changes are not written to disk until the Persist() method is called.
public DeleteProfile ( string profileName ) : void
profileName string ProfileName of section to delete
리턴 void
        public void DeleteProfile(string profileName)
        {
            iniFile.DeleteSection(profileName);
        }