System.Web.Configuration.WebConfigurationHost.EncryptSection C# (CSharp) 메소드

EncryptSection() 공개 메소드

public EncryptSection ( string clearXml, ProtectedConfigurationProvider protectionProvider, ProtectedConfigurationSection protectedSection ) : string
clearXml string
protectionProvider System.Configuration.ProtectedConfigurationProvider
protectedSection System.Configuration.ProtectedConfigurationSection
리턴 string
		public virtual string EncryptSection (string clearXml, ProtectedConfigurationProvider protectionProvider, ProtectedConfigurationSection protectedSection)
		{
			if (protectedSection == null)
				throw new ArgumentNullException ("protectedSection");

			return protectedSection.EncryptSection (clearXml, protectionProvider);
		}