System.Web.UI.MasterPageParser.AddContentPlaceHolderId C# (CSharp) Method

AddContentPlaceHolderId() private method

private AddContentPlaceHolderId ( string id ) : void
id string
return void
		internal void AddContentPlaceHolderId (string id)
		{
			if (contentPlaceHolderIds == null) {
				contentPlaceHolderIds = new List <string> (1);
				HttpRuntime.InternalCache.Insert (cacheEntryName, contentPlaceHolderIds);
			}
			
			contentPlaceHolderIds.Add (id);
		}