Mono.Linker.LinkContext.GetParameter C# (CSharp) Méthode

GetParameter() public méthode

public GetParameter ( string key ) : string
key string
Résultat string
		public string GetParameter (string key)
		{
			return (string) _parameters [key];
		}
	}

Usage Example

        public override void Process(LinkContext context)
        {
            ProductAssembly = (Profile.Current as BaseProfile).ProductAssembly;

            base.Process (context);

            PreserveDictionaryConstructor ();
            PreserveQueryableEnumerable ();

            if (context.GetParameter ("debug-build") == "True")
                PreserveDebugFeatures ();
        }
All Usage Examples Of Mono.Linker.LinkContext::GetParameter