Mono.Linker.LinkContext.GetParameter C# (CSharp) 메소드

GetParameter() 공개 메소드

public GetParameter ( string key ) : string
key string
리턴 string
		public string GetParameter (string key)
		{
			return (string) _parameters [key];
		}
	}

Usage Example

예제 #1
0
        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