Cilador.Fody.Core.WeaveContract.Initialize C# (CSharp) Метод

Initialize() публичный Метод

Contracts for IWeave.Initialize
public Initialize ( IWeavingContext weavingContext, WeaveConfigTypeBase weaveConfig ) : void
weavingContext IWeavingContext Context data for command initialization.
weaveConfig WeaveConfigTypeBase Configuration data for the command. Commands may require particular types for this argument that are subtypes of
Результат void
        public void Initialize(IWeavingContext weavingContext, WeaveConfigTypeBase weaveConfig)
        {
            Contract.Requires(weavingContext != null);
            Contract.Requires(!this.IsInitialized);
            Contract.Ensures(this.IsInitialized);

            throw new NotSupportedException();
        }
WeaveContract